1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-31 06:02:27 +02:00

Add verbose logging on sendmsg to try to track down JSON issue

This commit is contained in:
Jeff Mitchell 2012-06-25 13:34:46 -04:00
parent d39378b599
commit 2fd970d24d

View File

@ -448,6 +448,7 @@ Connection::sendMsg( QVariant j )
QJson::Serializer serializer;
const QByteArray payload = serializer.serialize( j );
tLog( LOGVERBOSE ) << Q_FUNC_INFO << "Sending to" << id() << ":" << payload;
sendMsg( Msg::factory( payload, Msg::JSON ) );
}