Details
-
New Feature
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.0.4
-
None
-
2016-21, 2016-22, 2016-23
Description
in helpers.cpp the writeConfig try...catch block ignores the error message and just returns when there is an error. An error here could be for many different reasons including XML issues. We should change this to something like:
catch(const std::exception &exc)
|
{
|
std::cerr << exc.what() << std::endl;
|
}
|