From: Marc Fournier Date: Tue, 15 Sep 2015 16:26:01 +0000 (+0200) Subject: plugin.c: add quotes to debug messages, for the sake of consistency X-Git-Tag: collectd-5.6.0~538^2~1 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=1c67d71501212e275f92aa1c70d35be3d354a9b6;p=collectd.git plugin.c: add quotes to debug messages, for the sake of consistency --- diff --git a/src/daemon/plugin.c b/src/daemon/plugin.c index 36c1b60d..206c6e21 100644 --- a/src/daemon/plugin.c +++ b/src/daemon/plugin.c @@ -624,7 +624,7 @@ static void *plugin_read_thread (void __attribute__((unused)) *args) rf->rf_name, CDTIME_T_TO_DOUBLE(elapsed)); DEBUG ("plugin_read_thread: Effective interval of the " - "%s plugin is %.3f seconds.", + "`%s' plugin is %.3f seconds.", rf->rf_name, CDTIME_T_TO_DOUBLE (rf->rf_effective_interval)); @@ -641,7 +641,7 @@ static void *plugin_read_thread (void __attribute__((unused)) *args) rf->rf_next_read = now; } - DEBUG ("plugin_read_thread: Next read of the %s plugin at %.3f.", + DEBUG ("plugin_read_thread: Next read of the `%s' plugin at %.3f.", rf->rf_name, CDTIME_T_TO_DOUBLE (rf->rf_next_read));