Skip to content

Commit

Permalink
remove verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
pofider committed Dec 11, 2019
1 parent d70205e commit 9590a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jsreport.Local/Internal/LocalUtilityReportingService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ internal LocalUtilityReportingService(IReportingBinary binary, Configuration con
var metaFile = Path.Combine(_tempPath, $"meta{Guid.NewGuid().ToString()}");
var keepAliveParam = _keepAlive ? "--keepAlive" : "";

var output = await _binaryProcess.ExecuteExe($"render {keepAliveParam} --verbose --request=\"{reqFile}\" --out=\"{outFile}\" --meta=\"{metaFile}\"").ConfigureAwait(false);
var output = await _binaryProcess.ExecuteExe($"render {keepAliveParam} --request=\"{reqFile}\" --out=\"{outFile}\" --meta=\"{metaFile}\"").ConfigureAwait(false);
if (output.IsError)
{
{
throw new JsReportBinaryException("Error rendering report: " + output.Logs, output.Logs, output.Command);
}

Expand Down

0 comments on commit 9590a45

Please sign in to comment.