summaryrefslogtreecommitdiff
path: root/plugin.c
diff options
context:
space:
mode:
authorPeter Bieringer <pb@bieringer.de>2021-02-04 08:11:08 +0100
committerPeter Bieringer <pb@bieringer.de>2021-02-04 08:11:08 +0100
commit447ab1bf2b321d2cfd9af0ffc0d4c3a8b28e66a8 (patch)
treefcbcd834eead38044b1998da675c79329b3f42b2 /plugin.c
parenta21ba806ef957fc42c9d9eb9378fae6b5d186dcf (diff)
downloadvdr-plugin-graphlcd-447ab1bf2b321d2cfd9af0ffc0d4c3a8b28e66a8.tar.gz
vdr-plugin-graphlcd-447ab1bf2b321d2cfd9af0ffc0d4c3a8b28e66a8.tar.bz2
fix log levels
Diffstat (limited to 'plugin.c')
-rw-r--r--plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin.c b/plugin.c
index 073d67a..18e8584 100644
--- a/plugin.c
+++ b/plugin.c
@@ -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);