summaryrefslogtreecommitdiff
path: root/src/lib/log.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-06 20:33:12 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-06 20:33:12 +0000
commit1e0f726e313638f7748e72545d0038cfcffde229 (patch)
tree0e87e60a68014c16b5ca0af37dfc93cfb3ab3734 /src/lib/log.h
parent7561918187d51eadcd59904a71c1eda30cc6ab31 (diff)
Clarify log levels a touch and add a debug message.
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);