diff options
| author | Andre Hartmann <[email protected]> | 2024-09-08 20:14:04 +0200 |
|---|---|---|
| committer | André Hartmann <[email protected]> | 2024-09-08 18:45:40 +0000 |
| commit | cda56c665ca1e15e24b3aa693f3c60f840ade04c (patch) | |
| tree | 03cea17be9bacff87c51e1d27095ca955d52d1ab /src/plugins/git/instantblame.cpp | |
| parent | 18205d6235a0c95a78d8ce12a87969f5d319e40f (diff) | |
Git: InstantBlame: Improve logging output
Makes it easier to copy the command line for manual testing.
Change-Id: I96b6cad13466551606aaa5182e7debf9c8296f5c
Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/git/instantblame.cpp')
| -rw-r--r-- | src/plugins/git/instantblame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
