mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Added more debugging macros.
This commit is contained in:
parent
d0ffc3e1a5
commit
b9d89b8c1d
28
config.h
28
config.h
@ -31,16 +31,24 @@ public:
|
|||||||
eOperatingModeCount
|
eOperatingModeCount
|
||||||
};
|
};
|
||||||
enum eLoggingMode {
|
enum eLoggingMode {
|
||||||
eLoggingModeNormal = 0x00,
|
eLoggingModeNormal = 0x0000,
|
||||||
eLoggingModeDebug1 = 0x01,
|
eLoggingModeDebug1 = 0x0001,
|
||||||
eLoggingModeDebug2 = 0x02,
|
eLoggingModeDebug2 = 0x0002,
|
||||||
eLoggingModeDebug3 = 0x04,
|
eLoggingModeDebug3 = 0x0004,
|
||||||
eLoggingModeDebug4 = 0x08,
|
eLoggingModeDebug4 = 0x0008,
|
||||||
eLoggingModeDebug5 = 0x10,
|
eLoggingModeDebug5 = 0x0010,
|
||||||
eLoggingModeDebug6 = 0x20,
|
eLoggingModeDebug6 = 0x0020,
|
||||||
eLoggingModeDebug7 = 0x40,
|
eLoggingModeDebug7 = 0x0040,
|
||||||
eLoggingModeDebug8 = 0x80,
|
eLoggingModeDebug8 = 0x0080,
|
||||||
eLoggingModeMask = 0xFF
|
eLoggingModeDebug9 = 0x0100,
|
||||||
|
eLoggingModeDebug10 = 0x0200,
|
||||||
|
eLoggingModeDebug11 = 0x0400,
|
||||||
|
eLoggingModeDebug12 = 0x0800,
|
||||||
|
eLoggingModeDebug13 = 0x1000,
|
||||||
|
eLoggingModeDebug14 = 0x2000,
|
||||||
|
eLoggingModeDebug15 = 0x4000,
|
||||||
|
eLoggingModeDebug16 = 0x8000,
|
||||||
|
eLoggingModeMask = 0xFFFF
|
||||||
};
|
};
|
||||||
cSatipConfig();
|
cSatipConfig();
|
||||||
unsigned int GetOperatingMode(void) const { return operatingModeM; }
|
unsigned int GetOperatingMode(void) const { return operatingModeM; }
|
||||||
|
8
log.h
8
log.h
@ -20,6 +20,14 @@
|
|||||||
#define debug6(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug6) ? dsyslog("SATIP6: " x) : void() )
|
#define debug6(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug6) ? dsyslog("SATIP6: " x) : void() )
|
||||||
#define debug7(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug7) ? dsyslog("SATIP7: " x) : void() )
|
#define debug7(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug7) ? dsyslog("SATIP7: " x) : void() )
|
||||||
#define debug8(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug8) ? dsyslog("SATIP8: " x) : void() )
|
#define debug8(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug8) ? dsyslog("SATIP8: " x) : void() )
|
||||||
|
#define debug9(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug9) ? dsyslog("SATIP9: " x) : void() )
|
||||||
|
#define debug10(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug10) ? dsyslog("SATIP10: " x) : void() )
|
||||||
|
#define debug11(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug11) ? dsyslog("SATIP11: " x) : void() )
|
||||||
|
#define debug12(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug12) ? dsyslog("SATIP12: " x) : void() )
|
||||||
|
#define debug13(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug13) ? dsyslog("SATIP13: " x) : void() )
|
||||||
|
#define debug14(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug14) ? dsyslog("SATIP14: " x) : void() )
|
||||||
|
#define debug15(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug15) ? dsyslog("SATIP15: " x) : void() )
|
||||||
|
#define debug16(x...) void( SatipConfig.IsLoggingMode(cSatipConfig::eLoggingModeDebug16) ? dsyslog("SATIP16: " x) : void() )
|
||||||
|
|
||||||
#endif // __SATIP_LOG_H
|
#endif // __SATIP_LOG_H
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user