From 0d7710dbe085a3dbfcf3a680feb37e4ec4d80039 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Mon, 8 Oct 2012 15:55:47 -0700 Subject: [PATCH] Document the log levels. We need to move things from INFO to DEBUG. --- src/Log.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Log.h b/src/Log.h index a71d07ee9c..10c18fd0eb 100644 --- a/src/Log.h +++ b/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