From cd75ca52e726e1b927d8a9110a9b6bc12cd0267e Mon Sep 17 00:00:00 2001 From: "Bruno G. Albuquerque" Date: Sun, 16 Aug 2009 18:35:01 +0000 Subject: [PATCH] - Yet more debug. This should allow me to test locally. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32446 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/cddb_daemon/cddb_server.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/servers/cddb_daemon/cddb_server.cpp b/src/servers/cddb_daemon/cddb_server.cpp index 14c3286952..8718f6fe63 100644 --- a/src/servers/cddb_daemon/cddb_server.cpp +++ b/src/servers/cddb_daemon/cddb_server.cpp @@ -118,7 +118,7 @@ CDDBServer::Query(uint32 cddbId, const scsi_toc_toc* toc, BList* queryResponse) printf("Error : CDDB server status code is %s.\n", statusCode.String()); } else { - printf("Error. Could not find any status code.\n"); + printf("Error : Could not find any status code.\n"); } return B_ERROR; @@ -377,6 +377,8 @@ CDDBServer::_SendCddbCommand(const BString& command, BString* output) // And now add command header and footer. fullCommand.Prepend("GET /~cddb/cddb.cgi?cmd="); fullCommand << " HTTP 1.0\n\n"; + + printf("%s\n", fullCommand.String()); int32 result = fConnection.Send((void*)fullCommand.String(), fullCommand.Length());