Skip to content

Commit

Permalink
Merge pull request #27238 from YaqiWang/console_exec_type_27237
Browse files Browse the repository at this point in the history
Using executioner type function instead of demangle the name
  • Loading branch information
lindsayad authored Apr 2, 2024
2 parents d38fc50 + ba88069 commit 1b7f89a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions framework/src/outputs/ConsoleUtils.C
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,7 @@ outputExecutionInformation(const MooseApp & app, FEProblemBase & problem)
Executioner * exec = app.getExecutioner();

oss << "Execution Information:\n"
<< std::setw(console_field_width) << " Executioner: " << demangle(typeid(*exec).name())
<< '\n';
<< std::setw(console_field_width) << " Executioner: " << exec->type() << '\n';

std::string time_stepper = exec->getTimeStepperName();
if (time_stepper != "")
Expand Down

0 comments on commit 1b7f89a

Please sign in to comment.