From: Pavel Rochnyack Date: Fri, 15 Jun 2018 11:11:17 +0000 (+0700) Subject: snmp plugin: Removed newly-added 'suffix skipped' notice X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=360f3186ff6a2498e3256658925c9f8122a15bd8 snmp plugin: Removed newly-added 'suffix skipped' notice --- diff --git a/src/snmp.c b/src/snmp.c index d629259d..e37c6d9f 100644 --- a/src/snmp.c +++ b/src/snmp.c @@ -1364,8 +1364,6 @@ static int csnmp_dispatch_table(host_definition_t *host, /* This suffix is missing in the subtree. Indicate this with the * "suffix_skipped" flag and try the next instance / suffix. */ suffix_skipped = 1; - NOTICE("snmp plugin: suffix skipped, variable not found for " - "TypeInstanceOID."); } } @@ -1385,7 +1383,6 @@ static int csnmp_dispatch_table(host_definition_t *host, /* This suffix is missing in the subtree. Indicate this with the * "suffix_skipped" flag and try the next instance / suffix. */ suffix_skipped = 1; - NOTICE("snmp plugin: suffix skipped, variable not found for HostOID."); } } @@ -1404,7 +1401,6 @@ static int csnmp_dispatch_table(host_definition_t *host, /* This suffix is missing in the subtree. Indicate this with the * "suffix_skipped" flag and try the next instance / suffix. */ suffix_skipped = 1; - NOTICE("snmp plugin: suffix skipped, variable not found for HostOID."); } } @@ -1424,8 +1420,6 @@ static int csnmp_dispatch_table(host_definition_t *host, /* This suffix is missing in the subtree. Indicate this with the * "suffix_skipped" flag and try the next instance / suffix. */ suffix_skipped = 1; - NOTICE( - "snmp plugin: suffix skipped, variable not found for Value OID."); break; } } /* for (i = 0; i < columns; i++) */