From 5de114c15159324a93201b99e08e06bf33e65bad Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Tue, 7 Apr 2020 13:17:17 -0700 Subject: [PATCH] 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. --- ofborg/src/tasks/build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ofborg/src/tasks/build.rs b/ofborg/src/tasks/build.rs index 27c184b..f43c825 100644 --- a/ofborg/src/tasks/build.rs +++ b/ofborg/src/tasks/build.rs @@ -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()