diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2011-10-26 18:55:17 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-10-26 18:55:17 +0200 |
commit | b6965912173a2c219ccd1e10e351fcbe4b7695fe (patch) | |
tree | 41487b91b74c99153db5d6b52f8e23a2722ba4b0 /service.c | |
parent | 29fee5f9a212851d4412ae57f3b2a12e78c011fa (diff) | |
download | vdr-plugin-graphlcd-b6965912173a2c219ccd1e10e351fcbe4b7695fe.tar.gz vdr-plugin-graphlcd-b6965912173a2c219ccd1e10e351fcbe4b7695fe.tar.bz2 |
improved syslog messages (more consistent)
Diffstat (limited to 'service.c')
-rw-r--r-- | service.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -490,14 +490,14 @@ bool cGraphLCDService::NeedsUpdate(uint64_t CurrentTime) if ((mend = version.find(".", mstart)) != std::string::npos) { numval = atoi(version.substr(mstart, mend-mstart).c_str()); if (numval <= 6) { // version <= 1.6.x - isyslog("graphlcd plugin: femon <= 1.7.7 requires a patch prior to be usable with graphlcd.\n"); - isyslog("graphlcd plugin: see README for further instructions.\n"); + isyslog("graphlcd plugin: INFO: femon <= 1.7.7 requires a patch prior to be usable with graphlcd\n"); + isyslog("graphlcd plugin: INFO: see README for further instructions\n"); } else if (numval == 7) { mstart = mend + 1; numval = atoi(version.substr(mstart).c_str()); // ignore trailing characters if (numval <= 7) { - isyslog("graphlcd plugin: femon <= 1.7.7 requires a patch prior to be usable with graphlcd.\n"); - isyslog("graphlcd plugin: see README for further instructions.\n"); + isyslog("graphlcd plugin: INFO: femon <= 1.7.7 requires a patch prior to be usable with graphlcd\n"); + isyslog("graphlcd plugin: INFO: see README for further instructions\n"); } else { // version >= 1.7.8: ok femonVersionValid = true; } @@ -505,10 +505,10 @@ bool cGraphLCDService::NeedsUpdate(uint64_t CurrentTime) femonVersionValid = true; } } else { - isyslog("graphlcd plugin: unable to decode version information of femon.\n"); + isyslog("graphlcd plugin: INFO: Unable to decode version information of femon\n"); } } else { - isyslog("graphlcd plugin: unable to decode version information of femon.\n"); + isyslog("graphlcd plugin: INFO: Unable to decode version information of femon\n"); } } femonVersionChecked = true; |