From 5f03cc5fa5623bcda2cc91dea9b0fce69c05917c Mon Sep 17 00:00:00 2001 From: smehringer Date: Thu, 15 Aug 2024 10:38:25 +0200 Subject: [PATCH] [MISC] Remove the name CHOPPER from error messages. --- src/chopper_layout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chopper_layout.cpp b/src/chopper_layout.cpp index 25186211..dcb8a8d4 100644 --- a/src/chopper_layout.cpp +++ b/src/chopper_layout.cpp @@ -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; } @@ -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; }