possible fix for jenkins build error

This commit is contained in:
Stojce Slavkovski 2014-01-02 23:10:21 +01:00
parent 31fa8ad1fb
commit 27e211de8d
2 changed files with 2 additions and 1 deletions

View file

@ -28,7 +28,7 @@ signals:
void logReceived(QString message);
private:
bool _extraDebugging = false;
bool _extraDebugging;
};
#endif /* defined(__interface__AbstractLoggerInterface__) */

View file

@ -15,6 +15,7 @@
#include <QDesktopServices>
FileLogger::FileLogger() : _logData(NULL) {
setExtraDebugging(false);
_fileName = QStandardPaths::writableLocation(QStandardPaths::DataLocation);
QDir logDir(_fileName);
if (!logDir.exists(_fileName)) {