Index: sources/device/DeviceController.cpp =================================================================== diff -u -r0b477f941afaf62fa6625dc32a070bc213481111 -r771654bf28818d7d4e30ff764c0df45e15cd71bd --- sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision 0b477f941afaf62fa6625dc32a070bc213481111) +++ sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision 771654bf28818d7d4e30ff764c0df45e15cd71bd) @@ -1005,6 +1005,7 @@ } logTally(QString(), fileDest); ok = QFile::rename(fileSrc + gzipSufx, fileDest + gzipSufx); + LOG_DEBUG(QString("Penging Log: %1, %2").arg(fileSrc, fileDest)); // Now the serial received and the system is logging in the log with the serial number, // therefore it is not bootPOST. @@ -1062,6 +1063,8 @@ // DEBUG qDebug() << __FUNCTION__ << "\n" << vFileName << "\n" << fileDest; logTally(filePath, fileDest); + + LOG_DEBUG(QString("Uploaded Log: %1, %2").arg(vFileName, fileDest)); ok = QFile::rename(filePath + vFileName, filePath + fileDest); lOut: return ok; @@ -1080,7 +1083,8 @@ } while (QFile::exists(vFilePath + tFileDest)); vFileDest = tFileDest; - qDebug() << __FUNCTION__ << "\n" << vFilePath << "\n" << vFileDest; + LOG_DEBUG(QString("Tally: %1, %2").arg(vFilePath, vFileDest)); +// qDebug() << __FUNCTION__ << "\n" << vFilePath << "\n" << vFileDest; return tally; }