From aff782ac8e0b7465dd62e4e645cce3cd7f7205af Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Thu, 10 Apr 2025 14:56:38 +0200 Subject: graph_traverser: drop logging graph-internal identifiers Those are the sha256sum of the serialisation of an artifact and that serialisation does not end up in the compatible CAS. In other words, they do not refer to anything the user can access. Therefore, drop this message that is not helpful. --- src/buildtool/graph_traverser/graph_traverser.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/buildtool/graph_traverser/graph_traverser.cpp') diff --git a/src/buildtool/graph_traverser/graph_traverser.cpp b/src/buildtool/graph_traverser/graph_traverser.cpp index 0ba2f09a..440a8078 100644 --- a/src/buildtool/graph_traverser/graph_traverser.cpp +++ b/src/buildtool/graph_traverser/graph_traverser.cpp @@ -569,7 +569,6 @@ void GraphTraverser::PrintOutputs( std::vector const& paths, std::vector const& artifact_nodes, std::map const& runfiles) const { - std::string msg_dbg{"Artifact ids:"}; std::string msg_failed{"Failed artifacts:"}; bool failed{false}; nlohmann::json json{}; @@ -601,7 +600,6 @@ void GraphTraverser::PrintOutputs( id); } } - msg_dbg += fmt::format("\n {}: {}", path, id); } if (not clargs_.build.show_runfiles and not runfiles.empty()) { @@ -609,7 +607,6 @@ void GraphTraverser::PrintOutputs( } Logger::Log(logger_, LogLevel::Info, "{}", message); - Logger::Log(logger_, LogLevel::Debug, "{}", msg_dbg); if (failed) { Logger::Log(logger_, LogLevel::Info, "{}", msg_failed); } -- cgit v1.2.3