diff options
| author | Gregory Maxwell <[email protected]> | 2016-12-25 20:19:40 +0000 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2017-04-01 18:53:29 +0000 |
| commit | 6b3bb3d9bae730d26ddd561b93efc667f5c8d499 (patch) | |
| tree | ad62375c446fb8ab80b1d39386a5266d610b7611 /src/dbwrapper.cpp | |
| parent | Merge #10129: scheduler: fix sub-second precision with boost < 1.50 (diff) | |
| download | discoin-6b3bb3d9bae730d26ddd561b93efc667f5c8d499.tar.xz discoin-6b3bb3d9bae730d26ddd561b93efc667f5c8d499.zip | |
Change LogAcceptCategory to use uint32_t rather than sets of strings.
This changes the logging categories to boolean flags instead of strings.
This simplifies the acceptance testing by avoiding accessing a scoped
static thread local pointer to a thread local set of strings. It
eliminates the only use of boost::thread_specific_ptr outside of
lockorder debugging.
This change allows log entries to be directed to multiple categories
and makes it easy to change the logging flags at runtime (e.g. via
an RPC, though that isn't done by this commit.)
It also eliminates the fDebug global.
Configuration of unknown logging categories now produces a warning.
Diffstat (limited to 'src/dbwrapper.cpp')
| -rw-r--r-- | src/dbwrapper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dbwrapper.cpp b/src/dbwrapper.cpp index cd441add4..01fcd0742 100644 --- a/src/dbwrapper.cpp +++ b/src/dbwrapper.cpp @@ -21,8 +21,9 @@ public: // This code is adapted from posix_logger.h, which is why it is using vsprintf. // Please do not do this in normal code virtual void Logv(const char * format, va_list ap) override { - if (!LogAcceptCategory("leveldb")) + if (!LogAcceptCategory(BCLog::LEVELDB)) { return; + } char buffer[500]; for (int iter = 0; iter < 2; iter++) { char* base; |