]> arthur.barton.de Git - netdata.git/commitdiff
do not report as error plugins calling DISABLE; fixes #1498
authorCosta Tsaousis <costa@tsaousis.gr>
Tue, 3 Jan 2017 01:13:42 +0000 (03:13 +0200)
committerCosta Tsaousis <costa@tsaousis.gr>
Tue, 3 Jan 2017 01:13:42 +0000 (03:13 +0200)
src/plugins_d.c

index 8036b632dc8fbf1ea00e390122bca6447e0fa397..23550bd89a2fa3f32038dcdfcf8f54842391feef 100644 (file)
@@ -325,7 +325,7 @@ void *pluginsd_worker_thread(void *arg)
                 else if(unlikely(st->debug)) debug(D_PLUGINSD, "PLUGINSD: dimension %s/%s already exists. Not adding it again.", st->id, id);
             }
             else if(unlikely(hash == DISABLE_HASH && !strcmp(s, "DISABLE"))) {
-                error("PLUGINSD: '%s' called DISABLE. Disabling it.", cd->fullfilename);
+                info("PLUGINSD: '%s' called DISABLE. Disabling it.", cd->fullfilename);
                 cd->enabled = 0;
                 killpid(cd->pid, SIGTERM);
                 break;