summaryrefslogtreecommitdiffstats
path: root/src/H5Clog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Clog.c')
-rw-r--r--src/H5Clog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Clog.c b/src/H5Clog.c
index 25b3cf0..b0eff4d 100644
--- a/src/H5Clog.c
+++ b/src/H5Clog.c
@@ -100,11 +100,11 @@ H5C_log_set_up(H5C_t *cache, const char log_location[], H5C_log_style_t style, h
/* Set up logging */
if (H5C_LOG_STYLE_JSON == style) {
- if (H5C_log_json_set_up(cache->log_info, log_location, mpi_rank) < 0)
+ if (H5C__log_json_set_up(cache->log_info, log_location, mpi_rank) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_LOGGING, FAIL, "unable to set up json logging")
}
else if (H5C_LOG_STYLE_TRACE == style) {
- if (H5C_log_trace_set_up(cache->log_info, log_location, mpi_rank) < 0)
+ if (H5C__log_trace_set_up(cache->log_info, log_location, mpi_rank) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_LOGGING, FAIL, "unable to set up trace logging")
}
else