diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-25 09:38:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-25 09:38:02 +0100 |
| commit | a1201ace8a1d5d3e0a9eca769cb9e0a12bf32693 (patch) | |
| tree | 342cd771a02c0de09338a9da2950439f612d29d6 /src/lib/log.cc | |
| parent | 11f927d8f8709d4ee3e1e8efd37e053e1e1a3821 (diff) | |
Add DEBUG_DECODE and some basic debugging of the decoding process.
Diffstat (limited to 'src/lib/log.cc')
| -rw-r--r-- | src/lib/log.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/log.cc b/src/lib/log.cc index 42184ec45..d9696f3cc 100644 --- a/src/lib/log.cc +++ b/src/lib/log.cc @@ -32,11 +32,11 @@ 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_DEBUG = 0x8; -int const Log::TYPE_TIMING = 0x10; +int const Log::TYPE_GENERAL = 0x1; +int const Log::TYPE_WARNING = 0x2; +int const Log::TYPE_ERROR = 0x4; +int const Log::TYPE_DEBUG_DECODE = 0x8; +int const Log::TYPE_TIMING = 0x10; Log::Log () : _types (0) |
