- Even more debugging. This is temporary while #4103 is fixed.

- Added some missing \n.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32437 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Bruno G. Albuquerque 2009-08-16 12:56:10 +00:00
parent 7c7436b679
commit e46d0e7d91

View File

@ -83,6 +83,11 @@ CDDBServer::Query(uint32 cddbId, const scsi_toc_toc* toc, BList* queryResponse)
status_t result;
result = _SendCddbCommand(cddbCommand, &output);
//TODO(bga): Remove this after #4103 is closed.
printf("----- CDDB query reply start -----\n");
printf("%s\n", output.String());
printf("----- CDDB query reply end -----\n");
if (result == B_OK) {
// Remove the header from the reply.
output.Remove(0, output.FindFirst("\r\n\r\n") + 4);
@ -104,13 +109,17 @@ CDDBServer::Query(uint32 cddbId, const scsi_toc_toc* toc, BList* queryResponse)
output.Remove(0, 1);
} else if (statusCode == "202") {
// No match found.
printf("Error : CDDB entry for id %s not found.", hexCddbId);
printf("Error : CDDB entry for id %s not found.\n", hexCddbId);
return B_ENTRY_NOT_FOUND;
} else {
// Something bad happened.
printf("Error : CDDB server status code is %s.",
statusCode.String());
if (statusCode.String() != "") {
printf("Error : CDDB server status code is %s.\n",
statusCode.String());
} else {
printf("Error. Could not find any status code.\n");
}
return B_ERROR;
}