summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/base/uninstall.cpp
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-06-24 18:37:47 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-06-25 00:04:44 +0200
commit388014567fae75c9324d861986bd8e02a74301ba (patch)
treebdeb1ba35242f55394bdf2f63e3eaeba996e94b2 /rbutil/rbutilqt/base/uninstall.cpp
parent277533fb57ee396cbee49ede635a068a98686d1e (diff)
downloadrockbox-388014567fae75c9324d861986bd8e02a74301ba.tar.gz
rockbox-388014567fae75c9324d861986bd8e02a74301ba.zip
Add missing class name to System Trace log.
To identify the source for System Trace entries qDebug() calls usually add the class name at the beginning. Add some missing ones and remove some trailing spaces. Change-Id: I3179bb206e96de8b5a1c05c0fc0958936e4513f3
Diffstat (limited to 'rbutil/rbutilqt/base/uninstall.cpp')
-rw-r--r--rbutil/rbutilqt/base/uninstall.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/base/uninstall.cpp b/rbutil/rbutilqt/base/uninstall.cpp
index cea0f4da57..ef6eb61ca5 100644
--- a/rbutil/rbutilqt/base/uninstall.cpp
+++ b/rbutil/rbutilqt/base/uninstall.cpp
@@ -66,7 +66,7 @@ void Uninstaller::uninstall(void)
66 if(installlog.contains(toDeleteList.at(j))) 66 if(installlog.contains(toDeleteList.at(j)))
67 { 67 {
68 deleteFile = false; 68 deleteFile = false;
69 qDebug() << "file still in use:" << toDeleteList.at(j); 69 qDebug() << "[Uninstaller] file still in use:" << toDeleteList.at(j);
70 } 70 }
71 installlog.endGroup(); 71 installlog.endGroup();
72 } 72 }
@@ -79,7 +79,7 @@ void Uninstaller::uninstall(void)
79 emit logItem(tr("Could not delete %1") 79 emit logItem(tr("Could not delete %1")
80 .arg(toDelete.filePath()), LOGWARNING); 80 .arg(toDelete.filePath()), LOGWARNING);
81 installlog.remove(toDeleteList.at(j)); 81 installlog.remove(toDeleteList.at(j));
82 qDebug() << "deleted: " << toDelete.filePath() ; 82 qDebug() << "[Uninstaller] deleted:" << toDelete.filePath();
83 } 83 }
84 else // if it is a dir, remember it for later deletion 84 else // if it is a dir, remember it for later deletion
85 { 85 {