From cda56c665ca1e15e24b3aa693f3c60f840ade04c Mon Sep 17 00:00:00 2001 From: Andre Hartmann Date: Sun, 8 Sep 2024 20:14:04 +0200 Subject: [PATCH] Git: InstantBlame: Improve logging output Makes it easier to copy the command line for manual testing. Change-Id: I96b6cad13466551606aaa5182e7debf9c8296f5c Reviewed-by: Orgad Shaneh --- src/plugins/git/instantblame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/instantblame.cpp b/src/plugins/git/instantblame.cpp index 9fdcf5f1746..227dbb9d2be 100644 --- a/src/plugins/git/instantblame.cpp +++ b/src/plugins/git/instantblame.cpp @@ -423,7 +423,7 @@ void InstantBlame::perform() if (settings().instantBlameIgnoreLineMoves()) options.append("-M"); options.append({"-L", lineString, "--", filePath.toString()}); - qCDebug(log) << "Running git" << options; + qCDebug(log) << "Running git" << options.join(' '); gitClient().vcsExecWithHandler(workingDirectory, options, this, commandHandler, RunFlags::NoOutput, m_codec); }