diff options
author | thlo <smarttv640@gmail.com> | 2014-04-22 14:34:40 +0200 |
---|---|---|
committer | thlo <smarttv640@gmail.com> | 2014-04-22 14:34:40 +0200 |
commit | a02ff029d7dc91822c835b1ab9cdc42434a8caff (patch) | |
tree | 851d4eba1fdd58da5cb5bbe492c2b44c6fab6a3b | |
parent | 3d74116ef87cb47d05c462f948f212f6479c3373 (diff) | |
download | vdr-plugin-smarttvweb-a02ff029d7dc91822c835b1ab9cdc42434a8caff.tar.gz vdr-plugin-smarttvweb-a02ff029d7dc91822c835b1ab9cdc42434a8caff.tar.bz2 |
Using error log level to announce that default config params are used
-rw-r--r-- | smarttvweb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smarttvweb.c b/smarttvweb.c index a490135..b85dddc 100644 --- a/smarttvweb.c +++ b/smarttvweb.c @@ -82,7 +82,7 @@ bool cPluginSmartTvWeb::Start(void) { if (mConfigDir.compare("") == 0) { const char* dir_name = cPlugin::ConfigDirectory(Name()); if (!dir_name) { - dsyslog("SmartTvWeb: Could not get config dir from VDR"); + esyslog("SmartTvWeb: Could not get config dir from VDR. Using default values!"); } else mConfigDir = string(dir_name); |