From 9a06de3cdf6918006b703f769e285930f589fb9c Mon Sep 17 00:00:00 2001 From: Jose Daniel Lara Date: Fri, 29 Sep 2023 22:19:29 -0600 Subject: [PATCH] add logging --- src/simulation/hdf_simulation_store.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/simulation/hdf_simulation_store.jl b/src/simulation/hdf_simulation_store.jl index 77ab196e26..e994650cff 100644 --- a/src/simulation/hdf_simulation_store.jl +++ b/src/simulation/hdf_simulation_store.jl @@ -309,6 +309,7 @@ function initialize_problem_storage!( group = _get_group_or_create(emulation_group, string(type)) for (key, reqs) in getfield(em_problem_reqs, type) name = encode_key_as_string(key) + @error name dataset = _create_dataset(group, name, reqs) # Columns can't be stored in attributes because they might be larger than # the max size of 64 KiB. @@ -699,6 +700,7 @@ function _compute_chunk_count(dims, dtype; max_chunk_bytes = DEFAULT_MAX_CHUNK_B end function _create_dataset(group, name, reqs) + @error reqs["dims"] dataset = HDF5.create_dataset( group, name,