Skip to content

Commit

Permalink
[MISC] Remove the name CHOPPER from error messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
smehringer committed Aug 15, 2024
1 parent 861e2e0 commit 5f03cc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chopper_layout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ int chopper_layout(chopper::configuration & config, sharg::parser & parser)
}
catch (sharg::parser_error const & ext) // the user did something wrong
{
std::cerr << "[CHOPPER ERROR] " << ext.what() << '\n'; // customize your error message
std::cerr << "[ERROR] " << ext.what() << '\n'; // customize your error message
return -1;
}

Expand Down Expand Up @@ -74,7 +74,7 @@ int chopper_layout(chopper::configuration & config, sharg::parser & parser)
}
catch (std::exception const & ext)
{
std::cerr << "[CHOPPER ERROR] " << ext.what() << '\n';
std::cerr << "[ERROR] " << ext.what() << '\n';
return -1;
}

Expand Down

0 comments on commit 5f03cc5

Please sign in to comment.