From: Xavier Mehrenberger Date: Sat, 11 Jun 2011 21:01:57 +0000 (+0200) Subject: src/plugin.c: add info to 'Invalid value list' error message X-Git-Tag: collectd-4.10.4~9 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=1ded46e8eb7b0884edc0ab6efeff3991a12f3129;p=collectd.git src/plugin.c: add info to 'Invalid value list' error message Signed-off-by: Florian Forster --- diff --git a/src/plugin.c b/src/plugin.c index a3f10ae2..6d7c96e4 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -1358,7 +1358,8 @@ int plugin_dispatch_values (value_list_t *vl) if ((vl == NULL) || (vl->type[0] == 0) || (vl->values == NULL) || (vl->values_len < 1)) { - ERROR ("plugin_dispatch_values: Invalid value list."); + ERROR ("plugin_dispatch_values: Invalid value list " + "from plugin %s.", vl->plugin); return (-1); }