summaryrefslogtreecommitdiff
path: root/src/lib/log.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/log.cc')
-rw-r--r--src/lib/log.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/log.cc b/src/lib/log.cc
index a3466538e..e0ba3aaaa 100644
--- a/src/lib/log.cc
+++ b/src/lib/log.cc
@@ -35,7 +35,8 @@ using namespace std;
int const Log::TYPE_GENERAL = 0x1;
int const Log::TYPE_WARNING = 0x2;
int const Log::TYPE_ERROR = 0x4;
-int const Log::TYPE_TIMING = 0x8;
+int const Log::TYPE_DEBUG = 0x8;
+int const Log::TYPE_TIMING = 0x10;
Log::Log ()
: _types (0)