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

* Properly print out msg's payload.

This commit is contained in:
Christian Muehlhaeuser
2013-09-03 15:59:26 +02:00
parent 1b7af636a8
commit 1d354cbba5

View File

@@ -191,7 +191,7 @@ DBSyncConnection::handleMsg( msg_ptr msg )
QVariantMap m = msg->json().toMap();
if ( m.empty() )
{
tLog() << "Failed to parse msg in dbsync from:" << m_source->id() << m_source->friendlyName() << msg->json();
tLog() << "Failed to parse msg in dbsync from:" << m_source->id() << m_source->friendlyName() << msg->payload();
Q_ASSERT( false );
return;
}