From: Marc Fournier Date: Tue, 10 Jan 2017 21:58:21 +0000 (+0100) Subject: src/daemon/collectd.c: do not refer to syslog in error message X-Git-Tag: collectd-5.7.2~16^2~1 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=9b10e3c0af0d0f5be3b1603946fd336b7d930b1b;p=collectd.git src/daemon/collectd.c: do not refer to syslog in error message ... as the message the user would be looking for can be found on stderr/stdout or in any configured logfile. --- diff --git a/src/daemon/collectd.c b/src/daemon/collectd.c index 60ce91fd..b947349e 100644 --- a/src/daemon/collectd.c +++ b/src/daemon/collectd.c @@ -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); }