DPL: clean up leftovers from input stream after parsing a workflow#15087
DPL: clean up leftovers from input stream after parsing a workflow#15087ehellbar wants to merge 1 commit intoAliceO2Group:devfrom
Conversation
|
REQUEST FOR PRODUCTION RELEASES: This will add The following labels are available |
|
for certain piped workflows, when I use debug severity, there are some leftover debug log messages from destructors after the parsing, which makes the parsing fail and throw the runtime error. E.g. there are messages from FairRoot and the CcdbApi: |
| } | ||
| LOG(debug) << "following leftover line found in input stream after parsing workflow: " << buf; | ||
| } | ||
| } |
There was a problem hiding this comment.
we could also just not print the lines
| if (s.eof()) { | ||
| break; | ||
| } | ||
| LOG(debug) << "following leftover line found in input stream after parsing workflow: " << buf; |
There was a problem hiding this comment.
Why not using a signpost, so that we actually can turn it on if needed?
No description provided.