From 8e9a50dfa7a01b9d6af0190af3764616283b3a61 Mon Sep 17 00:00:00 2001 From: Mark Kittisopikul Date: Mon, 3 Jun 2024 06:12:14 -0400 Subject: [PATCH] Increase logging from helpers --- src/api/helpers.jl | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/api/helpers.jl b/src/api/helpers.jl index 1b0fdb117..fdbb4b3c4 100644 --- a/src/api/helpers.jl +++ b/src/api/helpers.jl @@ -88,8 +88,11 @@ function h5a_iterate_helper( )::herr_t f, err_ref = data try - return herr_t(f(loc_id, attr_name, ainfo)) + ret = herr_t(f(loc_id, attr_name, ainfo)) + @async @info "h5a_iterate_helper" ret + return ret catch err + @async @info "h5a_iterate_helper got an error" err err_ref[] = err return herr_t(-1) end @@ -465,8 +468,11 @@ function h5l_iterate_helper( )::herr_t f, err_ref = data try - return herr_t(f(group, name, info)) + ret = herr_t(f(group, name, info)) + @async @info "h5l_iterate_helper" ret + return ret catch err + @async @info "h5l_iterate_helper got an error" err err_ref[] = err return herr_t(-1) end