summaryrefslogtreecommitdiff
path: root/src/lib/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/log.h')
-rw-r--r--src/lib/log.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/log.h b/src/lib/log.h
index 298b425cd..c5241ebcf 100644
--- a/src/lib/log.h
+++ b/src/lib/log.h
@@ -37,9 +37,10 @@ public:
virtual ~Log () {}
enum Level {
- STANDARD = 0,
+ SILENT = 0,
VERBOSE = 1,
- TIMING = 2
+ DEBUG = 2,
+ TIMING = 3
};
void log (std::string m, Level l = STANDARD);