[logging] Comment all continuing logs.

Most logs should terminated with a '\n'. Some logs
are built up over multiple calls to logPrintf(), so
do not need a newline terminater. Comment all of
these 'continued' logs as a linter hing.
This commit is contained in:
John Newbery
2018-04-05 10:17:32 -04:00
parent 2b54155a45
commit 5c21e6c6d3
6 changed files with 13 additions and 13 deletions

View File

@@ -63,7 +63,7 @@ public:
assert(p <= limit);
base[std::min(bufsize - 1, (int)(p - base))] = '\0';
LogPrintf("leveldb: %s", base);
LogPrintf("leveldb: %s", base); /* Continued */
if (base != buffer) {
delete[] base;
}