1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-08 10:02:29 +02:00

Add further query debugging

This commit is contained in:
Jeff Mitchell 2012-06-21 17:59:51 -04:00
parent 6ce38cb986
commit 45b10435df

View File

@ -54,7 +54,8 @@ TomahawkSqlQuery::escape( QString identifier )
bool
TomahawkSqlQuery::exec( const QString& query )
{
prepare( query );
bool prepareResult = prepare( query );
tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Query preparation successful?" << ( prepareResult ? "true" : "false" );
return exec();
}