collectd-nagios(1) and collectd-unixsock(5): Reference one another.
[collectd.git] / src / csv.c
index 4379fe5..fcd707e 100644 (file)
--- a/src/csv.c
+++ b/src/csv.c
@@ -201,7 +201,7 @@ static int csv_write (const data_set_t *ds, const value_list_t *vl)
        if (value_list_to_filename (filename, sizeof (filename), ds, vl) != 0)
                return (-1);
 
-       DEBUG ("filename = %s;", filename);
+       DEBUG ("csv plugin: csv_write: filename = %s;", filename);
 
        if (value_list_to_string (values, sizeof (values), ds, vl) != 0)
                return (-1);
@@ -270,4 +270,4 @@ void module_register (void)
        plugin_register_config ("csv", csv_config,
                        config_keys, config_keys_num);
        plugin_register_write ("csv", csv_write);
-}
+} /* void module_register */