diff options
author | Anthony Towns <aj@erisian.com.au> | 2018-05-03 10:14:01 +1000 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-05-28 14:26:06 -0400 |
commit | 412987430c98e78ccda033ab1cf7a176a4c0b835 (patch) | |
tree | 5803f80fad55ff4262cd17a15c288980456a6fa6 /src/logging.h | |
parent | 8ab4f282c06d67074b872dbda0be37636fdd5186 (diff) |
Replace OpenDebugLog() with StartLogging()
StartLogging() is used to mark the start of logging generically, whether
using -printtoconsole or -debuglogfile.
Diffstat (limited to 'src/logging.h')
-rw-r--r-- | src/logging.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logging.h b/src/logging.h index e399d4c307..4fa9e0c8a4 100644 --- a/src/logging.h +++ b/src/logging.h @@ -93,7 +93,7 @@ namespace BCLog { /** Returns whether logs will be written to any output */ bool Enabled() const { return m_print_to_console || m_print_to_file; } - bool OpenDebugLog(); + bool StartLogging(); void ShrinkDebugFile(); uint32_t GetCategoryMask() const { return m_categories.load(); } |