1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-19 15:29:42 +01:00

* Fixed using tLog before Logger is initialized.

This commit is contained in:
Christian Muehlhaeuser 2013-01-16 14:37:09 +01:00
parent c07ac1cc74
commit dcd253fdf6

View File

@ -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();