about summary refs log tree commit diff
path: root/third_party/nix/src/libstore/rpc-store.cc
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-11-27T19·49-0500
committerglittershark <grfn@gws.fyi>2020-11-27T20·06+0000
commitafdf08ead56370efabd6e9e9e154fe013a428419 (patch)
tree387163fb58282754e03bc2a484c1b25202e77c60 /third_party/nix/src/libstore/rpc-store.cc
parentdb5290358104764155c53235394a07608d7fcf75 (diff)
fix(tvix): Remove more superfluous log output r/1940
- A couple of log messages had double-newlines still
- Remove the [ drvPath ] bit from the "building path" output, since the
  derivation path is already present in the message itself.

Change-Id: Ib4b514a18fcb63c7191f4d7cf0a9b857aaa3f3fa
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2171
Tested-by: BuildkiteCI
Reviewed-by: kanepyork <rikingcoding@gmail.com>
Diffstat (limited to 'third_party/nix/src/libstore/rpc-store.cc')
-rw-r--r--third_party/nix/src/libstore/rpc-store.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/third_party/nix/src/libstore/rpc-store.cc b/third_party/nix/src/libstore/rpc-store.cc
index 5d0ec1f9eb..6bf58747d0 100644
--- a/third_party/nix/src/libstore/rpc-store.cc
+++ b/third_party/nix/src/libstore/rpc-store.cc
@@ -364,8 +364,7 @@ absl::Status RpcStore::buildPaths(std::ostream& log_sink, const PathSet& paths,
       // TODO(tazjin): Include .path()?
       log_sink << event.build_log().line();
     } else {
-      log_sink << std::endl
-               << "Building path: " << event.building_path().path()
+      log_sink << "Building path: " << event.building_path().path()
                << std::endl;
     }