tasks/build: don't use \n to split log line

Otherwise, we have one line that has the log prefix, and one line
immediately following that doesn't.
This commit is contained in:
Cole Helbling 2020-04-07 13:17:17 -07:00
parent 5fd48be23d
commit 5de114c151
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C

View file

@ -373,7 +373,8 @@ impl notifyworker::SimpleNotifyWorker for BuildWorker {
};
info!("ok built ({:?}), building", status);
info!("Lines:\n-----8<-----");
info!("Lines:");
info!("-----8<-----");
actions
.log_snippet()
.iter()