diff options
| author | Pieter Wuille <[email protected]> | 2018-04-30 19:13:30 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2018-04-30 19:21:14 -0700 |
| commit | 5a666428b0f11d62af2002bd54a45ff2f79f30cd (patch) | |
| tree | 012547bb657dc664b6882512090f1304a58473db /src/httpserver.cpp | |
| parent | Merge #13130: [tests] Fix race in rpc_deprecated.py (diff) | |
| parent | util: Store debug log file path in BCLog::Logger member. (diff) | |
| download | discoin-5a666428b0f11d62af2002bd54a45ff2f79f30cd.tar.xz discoin-5a666428b0f11d62af2002bd54a45ff2f79f30cd.zip | |
Merge #12954: util: Refactor logging code into a global object
8c2d695c4a util: Store debug log file path in BCLog::Logger member. (Jim Posen)
8e7b961388 scripted-diff: Rename BCLog::Logger member variables. (Jim Posen)
1eac317f25 util: Refactor GetLogCategory. (Jim Posen)
3316a9ebb6 util: Encapsulate logCategories within BCLog::Logger. (Jim Posen)
6a6d764ca5 util: Move debug file management functions into Logger. (Jim Posen)
f55f4fcf05 util: Establish global logger object. (Jim Posen)
Pull request description:
This is purely a refactor with no behavior changes.
This creates a new class `BCLog::Logger` to encapsulate all global logging configuration and state.
Tree-SHA512: b34811f54a53b7375d7b6f84925453c6f2419d21179379ee28b3843d0f4ff8e22020de84a5e783453ea927e9074e32de8ecd05a6fa50d7bb05502001aaed8e53
Diffstat (limited to 'src/httpserver.cpp')
| -rw-r--r-- | src/httpserver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp index b8b338dfb..bd08b04c0 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -364,8 +364,8 @@ bool InitHTTPServer() // Update libevent's log handling. Returns false if our version of // libevent doesn't support debug logging, in which case we should // clear the BCLog::LIBEVENT flag. - if (!UpdateHTTPServerLogging(logCategories & BCLog::LIBEVENT)) { - logCategories &= ~BCLog::LIBEVENT; + if (!UpdateHTTPServerLogging(g_logger->WillLogCategory(BCLog::LIBEVENT))) { + g_logger->DisableCategory(BCLog::LIBEVENT); } #ifdef WIN32 |