Skip to content
Snippets Groups Projects
Commit 5d0a3ce9 authored by Alexander van Amesfoort's avatar Alexander van Amesfoort
Browse files

Task #5844: change 'Aborted' msg into 'Stopped' on valid/expected EINTR....

Task #5844: change 'Aborted' msg into 'Stopped' on valid/expected EINTR. Aborted scares as it is printed on abort().
parent d8718d64
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ namespace LOFAR
LOG_INFO_STR( logPrefix << "End of stream");
} catch (SystemCallException &ex) {
if (ex.error == EINTR)
LOG_INFO_STR( logPrefix << "Aborted: " << ex.what());
LOG_INFO_STR( logPrefix << "Stopped: " << ex.what());
else
LOG_ERROR_STR( logPrefix << "Caught Exception: " << ex);
} catch (Exception &ex) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment