1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 00:09:47 +01:00

More debugging

This commit is contained in:
Jeff Mitchell 2011-10-11 08:57:30 -04:00
parent d2dc3082b1
commit 37f5b9114e

View File

@ -109,7 +109,10 @@ DatabaseCommand_DeleteFiles::exec( DatabaseImpl* dbi )
tDebug() << Q_FUNC_INFO << " binding id string: " << idstring;
dirquery.exec();
while ( dirquery.next() )
{
tDebug() << Q_FUNC_INFO << " found dirquery value 0: " << dirquery.value( 0 ).toString() << " and value 1: " << dirquery.value( 1 ).toString();
m_files << dirquery.value( 1 ).toString();
}
tDebug() << Q_FUNC_INFO << " executed query was: " << dirquery.executedQuery() << ", bound value is: " << dirquery.boundValue( 0 ).toString();
tDebug() << Q_FUNC_INFO << " files selected for delete: " << m_files;