util: Move debug file management functions into Logger.
Details
Details
- Reviewers
deadalnix jasonbcox - Group Reviewers
Restricted Owners Package (Owns No Changed Paths) Restricted Project - Commits
- rSTAGING06db7fa67c81: [Part 3] Refactor logging code into a global object
rABC06db7fa67c81: [Part 3] Refactor logging code into a global object
Run bitcoind with different permutations of:
-logtimestamps, -debug, -printtoconsole, -datadir, -shrinkdebugfile
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Lint
Lint Passed Severity Location Code Message Auto-Fix src/init.cpp:1 CFMT Code style violation - Unit
No Test Coverage - Build Status
Buildable 2335 Build 2807: Bitcoin ABC Buildbot (legacy) Build 2806: arc lint + arc unit
Event Timeline
src/logging.h | ||
---|---|---|
56 ↗ | (On Diff #3563) | Please use std::mutex |
Comment Actions
It overall looks good. Please look into using std::mutex instead of boost::mutex.
src/logging.h | ||
---|---|---|
15 ↗ | (On Diff #3563) | While there are a lot of uses of boost::mutex in the codebase remaining - we move to C++11 and we should use std::mutex instead whenever possible. |