diff options
author | scop <scop> | 2005-06-22 16:57:57 +0000 |
---|---|---|
committer | scop <scop> | 2005-06-22 16:57:57 +0000 |
commit | 1b8747dd7a9e55aec4c2aaf1048b58c95c4c2b00 (patch) | |
tree | d906db82625bc4b6e86d8f1bba1d749107313b03 /dxr3configdata.h | |
parent | 7cfced59ba4bd5100d681783a74cbb327adfb525 (diff) | |
download | vdr-plugin-dxr3-1b8747dd7a9e55aec4c2aaf1048b58c95c4c2b00.tar.gz vdr-plugin-dxr3-1b8747dd7a9e55aec4c2aaf1048b58c95c4c2b00.tar.bz2 |
Use VDR's logging facilities, no more dxr3plugin.log.
Diffstat (limited to 'dxr3configdata.h')
-rw-r--r-- | dxr3configdata.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/dxr3configdata.h b/dxr3configdata.h index 3ee4e37..fe6a4f6 100644 --- a/dxr3configdata.h +++ b/dxr3configdata.h @@ -43,14 +43,6 @@ enum eMenuMode }; // ================================== -//! possible debug levels -enum eDebugLevel -{ - LOW = 0, ///< only log basic warings and errors - EVERYTHING ///< log everything - note logfile can become very big -}; - -// ================================== //! global interface to access all config datas of this plugin /* With this singleton you can access very easy all possible @@ -112,36 +104,6 @@ public: return m_menumode = menuMode; } - int GetDebug() const - { - return m_debug; - } - int SetDebug(int value) - { - return m_debug = value; - } - int GetDebugLevel() const - { - return m_debuglevel; - } - int SetDebugLevel(int value) - { - return m_debuglevel = value; - } - - // some little helpers to save some writing - int GetDebugLow() const - { - return (m_debug && !m_debuglevel); - } - int GetDebugEverything() const - { - if (m_debug && !m_debuglevel) - return 1; - else - return 0; - } - int GetBrightness() const { return m_brightness; @@ -175,8 +137,6 @@ protected: int m_ac3output; int m_card; int m_forceletterbox; - int m_debug; - int m_debuglevel; int m_brightness; int m_contrast; int m_saturation; |