projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cb3abd
)
src/daemon/collectd.c: do not refer to syslog in error message
author
Marc Fournier
<marc.fournier@camptocamp.com>
Tue, 10 Jan 2017 21:58:21 +0000
(22:58 +0100)
committer
Ruben 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
patch
|
blob
|
history
diff --git
a/src/daemon/collectd.c
b/src/daemon/collectd.c
index
60ce91f
..
b947349
100644
(file)
--- 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);
}