Progress callback log set to 'Pedantic' level
authorTomasz Iwanek <t.iwanek@samsung.com>
Fri, 23 Aug 2013 11:50:01 +0000 (13:50 +0200)
committerTomasz Iwanek <t.iwanek@samsung.com>
Fri, 23 Aug 2013 11:53:09 +0000 (13:53 +0200)
[Issue#]       N/A
[Feature]      Those lines makes no information gain usually but makes log harder to read
[Cause]        N/A
[Solution]     Lvel log logging changed
[Verification] Build repo.

Change-Id: I3528b0e0583185593795a18809f2212f0ff311a8

src/jobs/widget_install/job_widget_install.cpp
src/wrt-installer/installer_callbacks_translate.cpp

index 7af1fb0..4ae3856 100644 (file)
@@ -753,7 +753,7 @@ void JobWidgetInstall::SendProgress()
                 PKGMGR_PROGRESS_KEY,
                 percent.str());
 
-            LogDebug("Call widget install progressCallbak");
+            LogPedantic("Call widget install progressCallback");
             getInstallerStruct().progressCallback(
                 getInstallerStruct().userParam,
                 GetProgressPercent(),
index 5e415d2..5e067e9 100644 (file)
@@ -249,12 +249,12 @@ void installProgressCallback(void *userParam,
 
     if (apiStr->progress_callback) {
         //CALLBACK EXEC
-        LogDebug("Entered " << percent << "% " << description);
+        LogPedantic("Entered " << percent << "% " << description);
         apiStr->progress_callback(static_cast<float>(percent),
                                   description.c_str(),
                                   apiStr->userdata);
     } else {
-        LogDebug("installProgressCallback: ignoring NULL callback pointer");
+        LogPedantic("installProgressCallback: ignoring NULL callback pointer");
     }
 }
 } //namespace