debug messages improved

This commit is contained in:
zimoch
2012-05-15 09:14:34 +00:00
parent 4317ae0f75
commit 9585506644

View File

@ -1374,7 +1374,7 @@ compileString(StreamBuffer& buffer, const char*& source,
if (c) continue; if (c) continue;
// source may contain a function name // source may contain a function name
error(line, filename(), error(line, filename(),
"Unexpected word: %s\n", source); "Unexpected word: \"%s\"\n", source);
return false; return false;
} }
debug("StreamProtocolParser::Protocol::compileString buffer=%s\n", buffer.expand()()); debug("StreamProtocolParser::Protocol::compileString buffer=%s\n", buffer.expand()());
@ -1493,8 +1493,10 @@ compileFormat(StreamBuffer& buffer, const char*& formatstr,
buffer.append(&streamFormat, sizeof(streamFormat)); buffer.append(&streamFormat, sizeof(streamFormat));
buffer.append(infoString); buffer.append(infoString);
debug("StreamProtocolParser::Protocol::compileFormat: format.type=%s, infolen=%d\n", debug("StreamProtocolParser::Protocol::compileFormat: format.type=%s, "
StreamFormatTypeStr[streamFormat.type], streamFormat.infolen); "infolen=%d infostring=\"%s\"\n",
StreamFormatTypeStr[streamFormat.type],
streamFormat.infolen, infoString.expand()());
formatstr = source; // move pointer after parsed format formatstr = source; // move pointer after parsed format
return true; return true;
} }