src/daemon/collectd.c: do not refer to syslog in error message
authorMarc Fournier <marc.fournier@camptocamp.com>
Tue, 10 Jan 2017 21:58:21 +0000 (22:58 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Wed, 22 Feb 2017 17:34:00 +0000 (18:34 +0100)
... as the message the user would be looking for can be found on
stderr/stdout or in any configured logfile.

src/daemon/collectd.c

index 60ce91f..b947349 100644 (file)
@@ -522,7 +522,7 @@ int main(int argc, char **argv) {
    */
   if (cf_read(configfile)) {
     fprintf(stderr, "Error: Reading the config file failed!\n"
-                    "Read the syslog for details.\n");
+                    "Read the logs for details.\n");
     return (1);
   }