diff options
| author | Johann Latocha | 2010-09-01 01:02:39 +0200 |
|---|---|---|
| committer | Johann Latocha | 2010-09-01 01:02:39 +0200 |
| commit | f6fca1c3c5279c820be3860b0074831f920219d6 (patch) | |
| tree | 66c9568114734b8a4e7fa55c1e1626f2ccefa243 /src/util/consoleLogger.cpp | |
| parent | Missing return statement (diff) | |
| download | pvs-f6fca1c3c5279c820be3860b0074831f920219d6.tar.gz pvs-f6fca1c3c5279c820be3860b0074831f920219d6.tar.xz pvs-f6fca1c3c5279c820be3860b0074831f920219d6.zip | |
All printf() replaced with qDebug()
Diffstat (limited to 'src/util/consoleLogger.cpp')
| -rwxr-xr-x | src/util/consoleLogger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/consoleLogger.cpp b/src/util/consoleLogger.cpp index 5d07dbe..9189543 100755 --- a/src/util/consoleLogger.cpp +++ b/src/util/consoleLogger.cpp @@ -235,7 +235,7 @@ void ConsoleLogger::_prepareLog() if (_logFile.good()) _logFileGood = true; else - printf("ERROR: Logfile ( %s ) not accessible/found. Logs will not be available.\n", _logPath.toUtf8().data()); + qDebug("ERROR: Logfile ( %s ) not accessible/found. Logs will not be available.", qPrintable(_logPath)); _logFile.close(); } |
