cleanup: Remove excessive error reporting
authorPavel Rochnyack <pavel2000@ngs.ru>
Wed, 27 Jun 2018 11:55:47 +0000 (18:55 +0700)
committerPavel Rochnyack <pavel2000@ngs.ru>
Wed, 27 Jun 2018 11:56:14 +0000 (18:56 +0700)
These messages already reported in parse_value()

src/bind.c
src/curl_json.c
src/powerdns.c
src/protocols.c

index b012639..fe3480d 100644 (file)
@@ -343,8 +343,6 @@ static int bind_xml_read_derive(xmlDoc *doc, xmlNode *node, /* {{{ */
 
   int status = parse_value(str_ptr, &value, DS_TYPE_DERIVE);
   if (status != 0) {
-    ERROR("bind plugin: Parsing string \"%s\" to derive value failed.",
-          str_ptr);
     xmlFree(str_ptr);
     return -1;
   }
index f0badc9..5d96cbd 100644 (file)
@@ -256,7 +256,6 @@ static int cj_cb_number(void *ctx, const char *number, yajl_len_t number_len) {
   value_t vt;
   int status = parse_value(buffer, &vt, type);
   if (status != 0) {
-    NOTICE("curl_json plugin: Unable to parse number: \"%s\"", buffer);
     cj_advance_array(ctx);
     return CJ_CB_CONTINUE;
   }
index eb3ec53..7a2fbfd 100644 (file)
@@ -359,9 +359,6 @@ static void submit(const char *plugin_instance, /* {{{ */
   }
 
   if (0 != parse_value(value_str, &value, ds->ds[0].type)) {
-    ERROR("powerdns plugin: Cannot convert `%s' "
-          "to a number.",
-          value_str);
     return;
   }
 
index 59eb49a..36b1d83 100644 (file)
@@ -58,7 +58,6 @@ static void submit(const char *protocol_name, const char *str_key,
 
   status = parse_value(str_value, &value, DS_TYPE_DERIVE);
   if (status != 0) {
-    ERROR("protocols plugin: Parsing string as integer failed: %s", str_value);
     return;
   }