mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 07:25:43 +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);
|
void logReceived(QString message);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool _extraDebugging = false;
|
bool _extraDebugging;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* defined(__interface__AbstractLoggerInterface__) */
|
#endif /* defined(__interface__AbstractLoggerInterface__) */
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include <QDesktopServices>
|
#include <QDesktopServices>
|
||||||
|
|
||||||
FileLogger::FileLogger() : _logData(NULL) {
|
FileLogger::FileLogger() : _logData(NULL) {
|
||||||
|
setExtraDebugging(false);
|
||||||
_fileName = QStandardPaths::writableLocation(QStandardPaths::DataLocation);
|
_fileName = QStandardPaths::writableLocation(QStandardPaths::DataLocation);
|
||||||
QDir logDir(_fileName);
|
QDir logDir(_fileName);
|
||||||
if (!logDir.exists(_fileName)) {
|
if (!logDir.exists(_fileName)) {
|
||||||
|
|
Loading…
Reference in a new issue