diff --git a/src/configManagement.cpp b/src/configManagement.cpp index 32318e4..45dd2da 100644 --- a/src/configManagement.cpp +++ b/src/configManagement.cpp @@ -212,7 +212,6 @@ int ConfigBuilder::getInt(const configKey& key) const { try{ return stoi(getString(key)); }catch(invalid_argument& e){ - cerr << e.what() << endl; throw config_error("Invalid int data for key "+key+" : |"+getString(key)+"|"); } }