Index: sources/storage/Logger.cpp =================================================================== diff -u -r13d6a4fae2f910ab6e289ac9280258a94f734405 -r73d6d02c19467735e92f7c451ca5d3b47a2a90e4 --- sources/storage/Logger.cpp (.../Logger.cpp) (revision 13d6a4fae2f910ab6e289ac9280258a94f734405) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision 73d6d02c19467735e92f7c451ca5d3b47a2a90e4) @@ -308,6 +308,8 @@ mContent += _separator; } mContent += vContent; + // some messages like the version having the U08(uchar) parameters which converts to '\0' and causes problems in reading the log file. + mContent.replace('\0', "0"); QString logPathName = _logPathNames[vLogType]; if (logPathName.isEmpty())