Skip to content

Commit

Permalink
using executioner type function instead of demangle the name suggeste…
Browse files Browse the repository at this point in the history
…d by Logan Harbour #27237
  • Loading branch information
YaqiWang committed Mar 29, 2024
1 parent ad6651e commit ba88069
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 ba88069

Please sign in to comment.