write_stackdriver plugin: Remove redundant error message.
authorFlorian Forster <octo@collectd.org>
Thu, 18 Oct 2018 15:27:30 +0000 (17:27 +0200)
committerFlorian 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

index 0dad03c..a1341d9 100644 (file)
@@ -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 */