diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-09 13:00:11 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-09 13:00:11 +0200 |
commit | d91b6baad0e8f377254fdc67780602d03e745433 (patch) | |
tree | 49bc97aad45a5b64e09453d6ea69fc56b3fd0561 /log.h | |
parent | c7f2963f994ef2b2e9862da82a7065a6067dad4f (diff) | |
download | vdr-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |