On Sun, Apr 22, 2007, Tsantilas Christos wrote: > I do a first conversion from debug statements to debugs statements. > The patch is big (~750K) to post it to mailing list so I put the result > here: > http://www.chtsanti.net/others/CONVER_DEBUGS.diff
Check this:
void
Debug::finishDebug() {
_db_print("%s\n", CurrentDebug->str().c_str());
delete CurrentDebug;
CurrentDebug = NULL;
}
There's now an implied \n (ie, eol) in the debug path; your patch has
\n's in there.
Good start though!
Adrian
