aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2015-06-01 11:26:53 +0200
committerWladimir J. van der Laan <[email protected]>2015-06-01 11:26:59 +0200
commit8d05ec7bda41a720da16901c510b4cb75e6ab558 (patch)
treea535291c72bd52c21c489a489eb783518434ab30 /src/util.cpp
parentMerge pull request #6198 (diff)
parentUpdate help message to match the #4219 change (diff)
downloaddiscoin-8d05ec7bda41a720da16901c510b4cb75e6ab558.tar.xz
discoin-8d05ec7bda41a720da16901c510b4cb75e6ab558.zip
Merge pull request #6164
aa41bc8 Update help message to match the #4219 change (lpescher) f60bb5e Update documentation to match the #4219 change (lpescher) cb87386 Make command line option to show all debugging consistent with similar options (lpescher)
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp
index bfb95c904..33b5ee950 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -208,6 +208,7 @@ bool LogAcceptCategory(const char* category)
// if not debugging everything and not debugging specific category, LogPrint does nothing.
if (setCategories.count(string("")) == 0 &&
+ setCategories.count(string("1")) == 0 &&
setCategories.count(string(category)) == 0)
return false;
}