projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fab9e8
)
write_stackdriver plugin: Remove redundant error message.
author
Florian Forster
<octo@collectd.org>
Thu, 18 Oct 2018 15:27:30 +0000
(17:27 +0200)
committer
Florian Forster
<ff@octo.it>
Thu, 18 Oct 2018 16:52:13 +0000
(18:52 +0200)
A more detailed error is previously logged by wg_call_timeseries_write.
src/write_stackdriver.c
patch
|
blob
|
history
diff --git
a/src/write_stackdriver.c
b/src/write_stackdriver.c
index
0dad03c
..
a1341d9
100644
(file)
--- a/
src/write_stackdriver.c
+++ b/
src/write_stackdriver.c
@@
-341,11
+341,6
@@
static int wg_flush_nolock(cdtime_t timeout, wg_callback_t *cb) /* {{{ */
char *payload = sd_output_reset(cb->formatter);
int status = wg_call_timeseries_write(cb, payload);
- if (status != 0) {
- ERROR("write_stackdriver plugin: Sending buffer failed with status %d.",
- status);
- }
-
wg_reset_buffer(cb);
return status;
} /* }}} wg_flush_nolock */