aboutsummaryrefslogtreecommitdiff
path: root/src/dbwrapper.cpp
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2018-04-05 10:17:32 -0400
committerJohn Newbery <john@johnnewbery.com>2018-04-07 12:29:48 -0400
commit5c21e6c6d3843232f384079837da1d9fae573b8d (patch)
tree10596bfe565862e054d4a38655c049989f2e41e1 /src/dbwrapper.cpp
parent2b54155a459c235626fddc4495bb681b93d3dbc5 (diff)
downloadbitcoin-5c21e6c6d3843232f384079837da1d9fae573b8d.tar.xz
[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.
Diffstat (limited to 'src/dbwrapper.cpp')
-rw-r--r--src/dbwrapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbwrapper.cpp b/src/dbwrapper.cpp
index ca446c92fe..e401b5fb1b 100644
--- a/src/dbwrapper.cpp
+++ b/src/dbwrapper.cpp
@@ -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;
}