| 37 | } |
| 38 | |
| 39 | void LoggedProcess::on_stdOut() |
| 40 | { |
| 41 | auto lines = reprocess(readAllStandardOutput(), m_out_leftover); |
| 42 | emit log(lines, MessageLevel::StdOut); |
| 43 | } |
| 44 | |
| 45 | void LoggedProcess::on_exit(int exit_code, QProcess::ExitStatus status) |
| 46 | { |
nothing calls this directly
no test coverage detected