summaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-05-09 13:00:11 +0200
committerDimitar Petrovski <dimeptr@gmail.com>2012-05-09 13:00:11 +0200
commitd91b6baad0e8f377254fdc67780602d03e745433 (patch)
tree49bc97aad45a5b64e09453d6ea69fc56b3fd0561 /log.h
parentc7f2963f994ef2b2e9862da82a7065a6067dad4f (diff)
downloadvdr-plugin-eepg-d91b6baad0e8f377254fdc67780602d03e745433.tar.gz
vdr-plugin-eepg-d91b6baad0e8f377254fdc67780602d03e745433.tar.bz2
move cSetupEEPG to separate files
Diffstat (limited to 'log.h')
-rw-r--r--log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/log.h b/log.h
index 900aed6..c771d5f 100644
--- a/log.h
+++ b/log.h
@@ -10,6 +10,7 @@
#include <string>
#include <stdarg.h>
+#include "setupeepg.h"
#define VERBOSE 1
/* 0 = only print errors, 1 = print channels and themes, 2 = print channels, themes, titles, summaries 3 = debug mode */
@@ -19,7 +20,7 @@
bool CheckLevel(int level)
{
#ifdef DEBUG
- if (SetupPE.LogLevel >= level)
+ if (cSetupEEPG::getInstance().LogLevel >= level)
#else
if (VERBOSE >= level)
#endif