summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_file.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-12-28 13:22:32 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-12-28 13:22:32 (GMT)
commitba095e6a53a919c9753463c3800a26b180b7a135 (patch)
tree33f20992224381794d07e31b54313f1f26709a01 /src/H5VLnative_file.c
parentfe30b71086d1714261869a821f725e77026ba507 (diff)
parent1ff756a1047d58f71c70deb48c797cb860904292 (diff)
downloadhdf5-ba095e6a53a919c9753463c3800a26b180b7a135.zip
hdf5-ba095e6a53a919c9753463c3800a26b180b7a135.tar.gz
hdf5-ba095e6a53a919c9753463c3800a26b180b7a135.tar.bz2
Merge pull request #1406 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:md_cache_logging_squash to develop
* commit '1ff756a1047d58f71c70deb48c797cb860904292': Updated the log function names. Squash merge of MDC logging changes.
Diffstat (limited to 'src/H5VLnative_file.c')
-rw-r--r--src/H5VLnative_file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5VLnative_file.c b/src/H5VLnative_file.c
index 994af16..cc21a22 100644
--- a/src/H5VLnative_file.c
+++ b/src/H5VLnative_file.c
@@ -605,7 +605,7 @@ H5VL__native_file_optional(void *obj, hid_t H5_ATTR_UNUSED dxpl_id, void H5_ATTR
{
/* Call mdc logging function */
if(H5C_start_logging(f->shared->cache) < 0)
- HGOTO_ERROR(H5E_FILE, H5E_LOGFAIL, FAIL, "unable to start mdc logging")
+ HGOTO_ERROR(H5E_FILE, H5E_LOGGING, FAIL, "unable to start mdc logging")
break;
}
@@ -615,7 +615,7 @@ H5VL__native_file_optional(void *obj, hid_t H5_ATTR_UNUSED dxpl_id, void H5_ATTR
{
/* Call mdc logging function */
if(H5C_stop_logging(f->shared->cache) < 0)
- HGOTO_ERROR(H5E_FILE, H5E_LOGFAIL, FAIL, "unable to stop mdc logging")
+ HGOTO_ERROR(H5E_FILE, H5E_LOGGING, FAIL, "unable to stop mdc logging")
break;
}
@@ -628,7 +628,7 @@ H5VL__native_file_optional(void *obj, hid_t H5_ATTR_UNUSED dxpl_id, void H5_ATTR
/* Call mdc logging function */
if(H5C_get_logging_status(f->shared->cache, is_enabled, is_currently_logging) < 0)
- HGOTO_ERROR(H5E_FILE, H5E_LOGFAIL, FAIL, "unable to get logging status")
+ HGOTO_ERROR(H5E_FILE, H5E_LOGGING, FAIL, "unable to get logging status")
break;
}