Suppress command output on revision query

This is an internal operation, no need to log it.

Change-Id: Ic031454904437fd648579b1d0922d73ce2259f64
Reviewed-by: Artur Shepilko <artur.shepilko@nomadbyte.com>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Orgad Shaneh
2018-07-25 23:48:26 +03:00
committed by Orgad Shaneh
parent d3998c6319
commit bb6da94e5d

View File

@@ -369,7 +369,8 @@ RevisionInfo FossilClient::synchronousRevisionQuery(const QString &workingDirect
if (!id.isEmpty()) if (!id.isEmpty())
args << id; args << id;
const Utils::SynchronousProcessResponse response = vcsFullySynchronousExec(workingDirectory, args); const Utils::SynchronousProcessResponse response = vcsFullySynchronousExec(
workingDirectory, args, Utils::ShellCommand::SuppressCommandLogging);
if (response.result != Utils::SynchronousProcessResponse::Finished) if (response.result != Utils::SynchronousProcessResponse::Finished)
return RevisionInfo(); return RevisionInfo();