diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-06-01 11:26:53 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-06-01 11:26:59 +0200 |
| commit | 8d05ec7bda41a720da16901c510b4cb75e6ab558 (patch) | |
| tree | a535291c72bd52c21c489a489eb783518434ab30 /src/util.cpp | |
| parent | Merge pull request #6198 (diff) | |
| parent | Update help message to match the #4219 change (diff) | |
| download | discoin-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.cpp | 1 |
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; } |