Skip to content

Commit

Permalink
Log threshold should have been echo threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
emily-howell committed Jan 15, 2025
1 parent fd260e8 commit 5e48d68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libs/ascent/runtimes/ascent_main_runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1969,7 +1969,7 @@ AscentRuntime::BuildGraph(const conduit::Node &actions)
// Change the echo to standard output level
if (action.has_path("echo_threshold"))
{
ascent::Logger::instance().set_log_threshold(action["echo_threshold"].as_string());
ascent::Logger::instance().set_echo_threshold(action["echo_threshold"].as_string());
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion src/tests/ascent/t_ascent_logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,4 +307,4 @@ TEST(ascent_logging, test_logging_actions_threshold)
conduit::Node log_file_contents;
log_file_contents.load(log_file);
EXPECT_EQ(log_file_contents.number_of_children(), 2);
}
}

0 comments on commit 5e48d68

Please sign in to comment.