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