mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
possible fix for jenkins build error
This commit is contained in:
parent
31fa8ad1fb
commit
27e211de8d
2 changed files with 2 additions and 1 deletions
|
@ -28,7 +28,7 @@ signals:
|
|||
void logReceived(QString message);
|
||||
|
||||
private:
|
||||
bool _extraDebugging = false;
|
||||
bool _extraDebugging;
|
||||
};
|
||||
|
||||
#endif /* defined(__interface__AbstractLoggerInterface__) */
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#include <QDesktopServices>
|
||||
|
||||
FileLogger::FileLogger() : _logData(NULL) {
|
||||
setExtraDebugging(false);
|
||||
_fileName = QStandardPaths::writableLocation(QStandardPaths::DataLocation);
|
||||
QDir logDir(_fileName);
|
||||
if (!logDir.exists(_fileName)) {
|
||||
|
|
Loading…
Reference in a new issue