Skip to content

Commit

Permalink
move logger
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-lara committed Sep 30, 2023
1 parent 9a06de3 commit 723ee76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simulation/hdf_simulation_store.jl
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ function initialize_problem_storage!(
for (key, reqs) in getfield(dm_problem_reqs[problem], type)
!should_write_resulting_value(key) && continue
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.
Expand Down Expand Up @@ -309,7 +310,6 @@ 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.
Expand Down

0 comments on commit 723ee76

Please sign in to comment.