From 9b10e3c0af0d0f5be3b1603946fd336b7d930b1b Mon Sep 17 00:00:00 2001 From: Marc Fournier Date: Tue, 10 Jan 2017 22:58:21 +0100 Subject: [PATCH] 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. --- src/daemon/collectd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.11.0