Index: sources/storage/Logger.cpp =================================================================== diff -u -r59fc5195a10eeb83ac60cf32a9123fb9c9f8ec8e -r3e64d98e243484505a44d99b13826097cb6b01eb --- sources/storage/Logger.cpp (.../Logger.cpp) (revision 59fc5195a10eeb83ac60cf32a9123fb9c9f8ec8e) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision 3e64d98e243484505a44d99b13826097cb6b01eb) @@ -87,8 +87,8 @@ { if ( ! checkThread() ) return; ADD_EVENT_HEADER; - LOG_DEBUG_UI(tr("%1 Initialized").arg(metaObject()->className())); - LOG_DEBUG_UI(tr("Application %1 Started").arg(qApp->applicationName())); + LOG_DEBUG(tr("%1 Initialized").arg(metaObject()->className())); + LOG_DEBUG(tr("Application %1 Started").arg(qApp->applicationName())); LOG_EVENT_UI(qApp-> applicationVersion()); } @@ -390,7 +390,7 @@ // coco begin validated: This needs user interaction to check the old files deleted // Storage::FileHandler::find("/media/denali/0CAA-40C1/log/", {"*.err"}, 15); return 0; // has been tested manually - LOG_DEBUG("Initializing log clean up"); + LOG_DEBUG(tr("Initializing log clean up")); static QString mOSource; static QString mOExtension; int removeCount = 0; @@ -467,7 +467,7 @@ { // coco begin validated: This needs user interaction to export to USB device // has been tested manually - LOG_DEBUG(QString("Remove Logs Ended: %1").arg(_removeLogsWatcher.result())); + LOG_DEBUG(tr("Remove Logs Ended: %1").arg(_removeLogsWatcher.result())); emit didRemoveLogs(false); } // coco end