| 72 | } |
| 73 | |
| 74 | void LoggedProcess::on_stdErr() |
| 75 | { |
| 76 | auto lines = reprocess(readAllStandardError(), m_err_decoder); |
| 77 | emit log(lines, MessageLevel::StdErr); |
| 78 | } |
| 79 | |
| 80 | void LoggedProcess::on_stdOut() |
| 81 | { |
nothing calls this directly
no test coverage detected