Add log TYPE_DEBUG from 1.x.
[dcpomatic.git] / src / lib / log.cc
index a3466538e8924a9880521ddc632f703127665745..e0ba3aaaaba87f9458c8cc365e12986dfde176ee 100644 (file)
@@ -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)