aboutsummaryrefslogtreecommitdiff
path: root/common/debug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/debug.cpp')
-rw-r--r--common/debug.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/common/debug.cpp b/common/debug.cpp
index 430083f3d8..86371f4091 100644
--- a/common/debug.cpp
+++ b/common/debug.cpp
@@ -123,19 +123,6 @@ bool isDebugChannelEnabled(uint32 channel) {
return (gDebugChannelsEnabled & channel) != 0;
}
-bool isDebugChannelEnabled(const String &name) {
- // Debug level 11 turns on all special debug level messages
- if (gDebugLevel == 11)
- return true;
-
- // Search for the debug level with the given name and check if it is enabled
- DebugChannelMap::iterator i = gDebugChannels.find(name);
- if (i != gDebugChannels.end())
- return i->_value.enabled;
- else
- return false;
-}
-
static OutputFormatter s_debugOutputFormatter = 0;