diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-03-23 12:13:40 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-03-23 12:42:27 +0100 |
commit | 27a0e453b0dac639c9cb8f522454dee86cbb16a0 (patch) | |
tree | 70184e0b8de2d29ab190be335ea3714bc768bc81 /src/other_tools/git_operations/git_repo_remote.cpp | |
parent | 6a20550a83b0397696cbcecea73aa450d1385d75 (diff) | |
download | justbuild-27a0e453b0dac639c9cb8f522454dee86cbb16a0.tar.gz |
GitRepoRemote: Fix missing string in log message
Diffstat (limited to 'src/other_tools/git_operations/git_repo_remote.cpp')
-rw-r--r-- | src/other_tools/git_operations/git_repo_remote.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/other_tools/git_operations/git_repo_remote.cpp b/src/other_tools/git_operations/git_repo_remote.cpp index 8527a13c..c7063ae3 100644 --- a/src/other_tools/git_operations/git_repo_remote.cpp +++ b/src/other_tools/git_operations/git_repo_remote.cpp @@ -479,6 +479,7 @@ auto GitRepoRemote::UpdateCommitViaTmpRepo( if (str_len == std::string::npos) { (*logger)(fmt::format("List remote commits command {} produced " "malformed output:\n{}", + nlohmann::json(cmdline).dump(), out_str), /*fatal=*/true); return std::nullopt; |