Git: Suppress all output for instant blame

Change-Id: I5ad295cef22d0448f79d9187df85b582287b2835
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
Orgad Shaneh
2022-12-14 13:47:01 +02:00
committed by Orgad Shaneh
parent 7971a83730
commit 038847709c

View File

@@ -1581,7 +1581,7 @@ void GitPluginPrivate::instantBlame()
};
GitClient::instance()->vcsExecWithHandler(workingDirectory,
{"blame", "-p", "-L", lineString, "--", filePath.toString()},
this, commandHandler, RunFlags::SuppressCommandLogging);
this, commandHandler, RunFlags::NoOutput);
}
void GitPluginPrivate::stopInstantBlame()