diff options
author | Klaus T. Aehlig <aehlig@linta.de> | 2023-03-13 10:04:09 +0100 |
---|---|---|
committer | Klaus T. Aehlig <aehlig@linta.de> | 2023-03-13 14:05:41 +0100 |
commit | 072265e646ca7624c712ddc9726facb9cdc49b33 (patch) | |
tree | 95cf77d73d64da196b9985a7745a0a81e8714fb3 | |
parent | 050ff6bea9ce540e88dc12a6f448fbc048839cd7 (diff) | |
download | justbuild-072265e646ca7624c712ddc9726facb9cdc49b33.tar.gz |
just-mr: remove unnecessary double quotes
... on reporting the exec command; json encoding is already
quoting enough.
-rw-r--r-- | src/other_tools/just_mr/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/other_tools/just_mr/main.cpp b/src/other_tools/just_mr/main.cpp index 50f70b9a..02eaf8a5 100644 --- a/src/other_tools/just_mr/main.cpp +++ b/src/other_tools/just_mr/main.cpp @@ -1323,9 +1323,8 @@ void DefaultReachableRepositories( cmd.emplace_back(*it); } - Logger::Log(LogLevel::Info, - "Setup finished, exec \"{}\"", - nlohmann::json(cmd).dump()); + Logger::Log( + LogLevel::Info, "Setup finished, exec {}", nlohmann::json(cmd).dump()); // create argv std::vector<char*> argv{}; |