From c335e06646d89aaaaa3c5584e250ceccfdc3fe1a Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Fri, 16 Sep 2022 11:34:41 +0200 Subject: Also log dumping of the action graph ... at INFO level, in the same way as all other dumping of analysis results happen. --- src/buildtool/build_engine/target_map/result_map.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/buildtool/build_engine/target_map/result_map.hpp b/src/buildtool/build_engine/target_map/result_map.hpp index d4d9cfaf..324ff7a4 100644 --- a/src/buildtool/build_engine/target_map/result_map.hpp +++ b/src/buildtool/build_engine/target_map/result_map.hpp @@ -304,6 +304,8 @@ class ResultTargetMap { template auto ToFile(std::string const& graph_file, int indent = 2) const -> void { + Logger::Log( + LogLevel::Info, "Dumping action graph to file {}.", graph_file); std::ofstream os(graph_file); os << std::setw(indent) << ToJson() << std::endl; } -- cgit v1.2.3