mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Document the log levels. We need to move things from INFO to DEBUG.
This commit is contained in:
12
src/Log.h
12
src/Log.h
@@ -28,12 +28,12 @@
|
||||
|
||||
enum LogSeverity
|
||||
{
|
||||
lsTRACE = 0,
|
||||
lsDEBUG = 1,
|
||||
lsINFO = 2,
|
||||
lsWARNING = 3,
|
||||
lsERROR = 4,
|
||||
lsFATAL = 5
|
||||
lsTRACE = 0, // Very low-level progress information, details inside an operation
|
||||
lsDEBUG = 1, // Function-level progress information, operations
|
||||
lsINFO = 2, // Server-level progress information, major operations
|
||||
lsWARNING = 3, // Conditions that warrant human attention, may indicate a problem
|
||||
lsERROR = 4, // A condition that indicates a problem
|
||||
lsFATAL = 5 // A severe condition that indicates a server problem
|
||||
};
|
||||
|
||||
class LogPartition
|
||||
|
||||
Reference in New Issue
Block a user