Index: sources/storage/DriveWatcher.cpp =================================================================== diff -u -r3aab84456cfbdc4c4f495975ba9b8968eb844309 -r920342d3f8cb8c29966f2354ebc7d241df23ccf7 --- sources/storage/DriveWatcher.cpp (.../DriveWatcher.cpp) (revision 3aab84456cfbdc4c4f495975ba9b8968eb844309) +++ sources/storage/DriveWatcher.cpp (.../DriveWatcher.cpp) (revision 920342d3f8cb8c29966f2354ebc7d241df23ccf7) @@ -299,7 +299,7 @@ if (ok) { _mounted = true; _removed = false; - LOG_EVENT(tr("USB flash drive %1 has been mounted on %2").arg(vDevice).arg(USB_Mount_Point)); + LOG_DEBUG(QString("USB flash drive %1 has been mounted on %2").arg(vDevice).arg(USB_Mount_Point)); emit didUSBDriveMount(); } else { usbError(vDevice); @@ -323,7 +323,7 @@ ok = ::umount(vDevice.toLatin1().constData()) == 0; if (ok) { _mounted = false; - LOG_EVENT(tr("USB drive %2 unmounted").arg(vDevice)); + LOG_DEBUG(QString("USB drive %2 unmounted").arg(vDevice)); emit didUSBDriveUmount(); } else { // the error is irrelevant, commented out for now @@ -346,7 +346,7 @@ usbUmount(USB_Mount_Point); _umounted = false; _removed = true; - LOG_EVENT(tr("USB drive removed")); + LOG_DEBUG("USB drive removed"); emit didUSBDriveRemove(); } // coco end