aboutsummaryrefslogtreecommitdiff
path: root/src/logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/logging.h')
-rw-r--r--src/logging.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/logging.h b/src/logging.h
index 1288efa0fe..fe91ee43a5 100644
--- a/src/logging.h
+++ b/src/logging.h
@@ -69,7 +69,8 @@ namespace BCLog {
ALL = ~(uint32_t)0,
};
enum class Level {
- Debug = 0, // High-volume or detailed logging for development/debugging
+ Trace = 0, // High-volume or detailed logging for development/debugging
+ Debug, // Reasonably noisy logging, but still usable in production
Info, // Default
Warning,
Error,