From dcd253fdf6d45ec9d21c02393bf2f4e50244a3b3 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Wed, 16 Jan 2013 14:37:09 +0100 Subject: [PATCH] * Fixed using tLog before Logger is initialized. --- src/breakpad/BreakPad.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/breakpad/BreakPad.cpp b/src/breakpad/BreakPad.cpp index e23096084..935213a4b 100644 --- a/src/breakpad/BreakPad.cpp +++ b/src/breakpad/BreakPad.cpp @@ -89,7 +89,7 @@ BreakPad::BreakPad( const QString& path, bool active ) else if ( QFileInfo( globalReporter ).exists() ) reporter = globalReporter; else - tLog() << "Could not find \"" CRASH_REPORTER_BINARY "\" in \"" CMAKE_INSTALL_FULL_LIBEXECDIR "\" or application path"; + qDebug() << "Could not find \"" CRASH_REPORTER_BINARY "\" in \"" CMAKE_INSTALL_FULL_LIBEXECDIR "\" or application path"; char* creporter; std::string sreporter = reporter.toStdString();