summaryrefslogtreecommitdiffstats
path: root/collectors/debugfs.plugin/debugfs_zswap.c
diff options
context:
space:
mode:
Diffstat (limited to 'collectors/debugfs.plugin/debugfs_zswap.c')
-rw-r--r--collectors/debugfs.plugin/debugfs_zswap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/collectors/debugfs.plugin/debugfs_zswap.c b/collectors/debugfs.plugin/debugfs_zswap.c
index a2991b9f1..c8fc0f030 100644
--- a/collectors/debugfs.plugin/debugfs_zswap.c
+++ b/collectors/debugfs.plugin/debugfs_zswap.c
@@ -251,7 +251,7 @@ int zswap_collect_data(struct netdata_zswap_metric *metric)
snprintfz(filename, FILENAME_MAX, "%s%s", netdata_configured_host_prefix, metric->filename);
if (read_single_number_file(filename, (unsigned long long *)&metric->value)) {
- error("Cannot read file %s", filename);
+ netdata_log_error("Cannot read file %s", filename);
return 1;
}
@@ -383,7 +383,7 @@ int do_debugfs_zswap(int update_every, const char *name)
static int check_if_enabled = 1;
if (likely(check_if_enabled && debugfs_is_zswap_enabled())) {
- info("Zswap is disabled");
+ netdata_log_info("Zswap is disabled");
return 1;
}