From: Pavel Rochnyack Date: Sat, 14 May 2016 21:51:36 +0000 (+0600) Subject: perl plugin: Fixed Collectd::plugin_call_all function name im DEBUG()/ERROR() X-Git-Tag: collectd-5.7.0~81 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=f01c3e143c4369f11c130dbb0f0009a21f436574;p=collectd.git perl plugin: Fixed Collectd::plugin_call_all function name im DEBUG()/ERROR() --- diff --git a/bindings/perl/lib/Collectd.pm b/bindings/perl/lib/Collectd.pm index 576e5f43..ddacf024 100644 --- a/bindings/perl/lib/Collectd.pm +++ b/bindings/perl/lib/Collectd.pm @@ -180,13 +180,13 @@ sub plugin_call_all { } if (TYPE_LOG != $type) { - DEBUG ("Collectd::plugin_call: type = \"$type\" (" + DEBUG ("Collectd::plugin_call_all: type = \"$type\" (" . $types{$type} . "), args=\"" . join(', ', map { defined($_) ? $_ : '' } @_) . "\""); } if (! defined $plugins[$type]) { - ERROR ("Collectd::plugin_call: unknown type \"$type\""); + ERROR ("Collectd::plugin_call_all: unknown type \"$type\""); return; }