diff options
author | Peter Bieringer <pb@bieringer.de> | 2021-02-04 08:11:08 +0100 |
---|---|---|
committer | Peter Bieringer <pb@bieringer.de> | 2021-02-04 08:11:08 +0100 |
commit | 447ab1bf2b321d2cfd9af0ffc0d4c3a8b28e66a8 (patch) | |
tree | fcbcd834eead38044b1998da675c79329b3f42b2 /plugin.c | |
parent | a21ba806ef957fc42c9d9eb9378fae6b5d186dcf (diff) | |
download | vdr-plugin-graphlcd-447ab1bf2b321d2cfd9af0ffc0d4c3a8b28e66a8.tar.gz vdr-plugin-graphlcd-447ab1bf2b321d2cfd9af0ffc0d4c3a8b28e66a8.tar.bz2 |
fix log levels
Diffstat (limited to 'plugin.c')
-rw-r--r-- | plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -341,14 +341,14 @@ void cPluginGraphLCD::MainThreadHook() { if (mDisplay[index].Disp->Active()) { - dsyslog("graphlcd plugin: DEBUG: Display thread for %s is ready", mDisplay[index].Name.c_str()); + isyslog("graphlcd plugin: INFO: Display thread for %s is ready", mDisplay[index].Name.c_str()); mDisplay[index].Status = CONNECTED; } else { if ( (cTimeMs::Now() - mDisplay[index].to_timestamp) > (uint64_t) 10000) { - dsyslog ("graphlcd plugin: DEBUG: Timeout while waiting for display thread %s", mDisplay[index].Name.c_str()); + esyslog ("graphlcd plugin: ERROR: Timeout while waiting for display thread %s", mDisplay[index].Name.c_str()); /* no activity after 10 secs: display is unusable */ //GraphLCDSetup.PluginActive = 0; DisconnectDisplay(index); |