diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-21 17:22:26 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-21 17:22:26 +0200 |
commit | 9063aa4930e4336712d34d850ca3bca575a8c2ea (patch) | |
tree | 3147dce9eb66382421fc972e1967041a70a3189e | |
parent | 67382c15f7e9176dea44c3da7f7013759c88ce33 (diff) |
Clean up config module diagnostics
-rw-r--r-- | build2/config/operation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/config/operation.cxx b/build2/config/operation.cxx index 141b618..f450f21 100644 --- a/build2/config/operation.cxx +++ b/build2/config/operation.cxx @@ -41,7 +41,7 @@ namespace build2 path f (out_root / src_root_file); if (verb) - text << (verb >= 2 ? "config::save_src_root " : "save ") << f; + text << (verb >= 2 ? "config::save " : "save ") << f; try { @@ -70,7 +70,7 @@ namespace build2 path f (out_root / config_file); if (verb) - text << (verb >= 2 ? "config::save_config " : "save ") << f; + text << (verb >= 2 ? "config::save " : "save ") << f; try { |