aboutsummaryrefslogtreecommitdiff
path: root/src/logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/logging.h')
-rw-r--r--src/logging.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/logging.h b/src/logging.h
index 50869ad89a..f3914958cf 100644
--- a/src/logging.h
+++ b/src/logging.h
@@ -68,11 +68,11 @@ namespace BCLog {
ALL = ~(uint32_t)0,
};
enum class Level {
- Debug = 0,
- None = 1,
- Info = 2,
- Warning = 3,
- Error = 4,
+ Debug = 0, // High-volume or detailed logging for development/debugging
+ Info, // Default
+ Warning,
+ Error,
+ None, // Internal use only
};
class Logger