diff options
author | Vincent Ambo <mail@tazj.in> | 2020-08-21T01·28+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-08-21T01·35+0000 |
commit | ec72ca1961429d34fb391a19a16dbb16791c4d27 (patch) | |
tree | 8b92bfa695c87c90abde13845373e811b00d94c8 | |
parent | 06681c35a9191656b8f3a9a343e21457a71a947d (diff) |
fix(tvix): Add newlines to build logs r/1699
.. turns out producing an entire build log on a single line is not useful. This does not use `<< std::endl` because we have run into buffering issues with the implementation of the logs->gRPC sink, but intend to replace this in the future using a structured sink for BuildEvent protos rather than a raw stream. Change-Id: Ia9b05fa804391d389e2ef53ab4436c0ec5cc452e Reviewed-on: https://cl.tvl.fyi/c/depot/+/1828 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
-rw-r--r-- | third_party/nix/src/libstore/build.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/nix/src/libstore/build.cc b/third_party/nix/src/libstore/build.cc index 60890732e965..83aea3899ec7 100644 --- a/third_party/nix/src/libstore/build.cc +++ b/third_party/nix/src/libstore/build.cc @@ -1473,7 +1473,7 @@ void DerivationGoal::tryToBuild() { if (hook) { msg += fmt(" on '%s'", machineName); } - log_sink_ << msg << "[" << drvPath << "]"; + log_sink_ << absl::StrCat(msg, "[", drvPath, "]\n"); mcRunningBuilds = std::make_unique<MaintainCount<uint64_t>>(worker.runningBuilds); }; @@ -3835,7 +3835,7 @@ void DerivationGoal::handleEOF(int /* fd */) { void DerivationGoal::flushLine() { if (settings.verboseBuild && (settings.printRepeatedBuilds || curRound == 1)) { - log_sink_ << currentLogLine; + log_sink_ << absl::StrCat(currentLogLine, "\n"); } else { logTail.push_back(currentLogLine); if (logTail.size() > settings.logLines) { |