This commit is contained in:
Graham Christensen 2018-01-26 14:54:51 -05:00
parent 0fa3906497
commit 6d676e88e4
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -282,9 +282,7 @@ impl notifyworker::SimpleNotifyWorker for BuildWorker {
for line in spawned.lines().iter() {
if self.full_logs {
println!("Sending a log line ");
actions.log_line(&line);
println!("Sent the line ");
}
if snippet_log.len() >= 10 {
@ -293,8 +291,6 @@ impl notifyworker::SimpleNotifyWorker for BuildWorker {
snippet_log.push_back(line.to_owned());
}
println!("Done sending log messages =)");
let success = match spawned.wait() {
Ok(Some(Ok(status))) => status.success(),