From c7a1945dc87bbbf2e6d11d37159020abd14ed634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=B0=91=E5=8B=87?= Date: Tue, 9 Aug 2022 16:14:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E5=86=8D=E5=A4=87=E4=BB=BD=E5=92=8C?= =?UTF-8?q?=E8=BF=98=E5=8E=9F=E5=BA=94=E7=94=A8=E6=97=A5=E5=BF=97=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/utils.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/utils.cpp b/common/utils.cpp index 82f54ff..cabca0a 100755 --- a/common/utils.cpp +++ b/common/utils.cpp @@ -410,9 +410,11 @@ void Utils::excludeSomeHomePath(QStringList &excludes) QString home("/home/"); home += item; excludes << home + "/.box"; + excludes << home + "/.log"; QString dataHome("/data/home/"); dataHome += item; excludes << dataHome + "/.box"; + excludes << dataHome + "/.log"; } }