Skip to content

Commit 7b97dd9

Browse files
committed
remove unnecessary duplication of report generator ouput
1 parent 3fe7dbd commit 7b97dd9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

SharedProject/Core/ReportGenerator/ReportGeneratorUtil.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ async Task RunAsync(string outputReportType, string inputReports)
180180
throw new Exception($"Unknown reporttype '{outputReportType}'");
181181
}
182182
183-
logger.Log($"{title} Arguments [reporttype:{outputReportType}] {Environment.NewLine}{string.Join($"{Environment.NewLine}", reportTypeSettings)}");
184-
185183
var result = await processUtil
186184
.ExecuteAsync(new ExecuteRequest
187185
{
@@ -198,7 +196,7 @@ async Task RunAsync(string outputReportType, string inputReports)
198196
throw new Exception(result.Output);
199197
}
200198
201-
logger.Log($"{title} [reporttype:{outputReportType}]", result.Output);
199+
logger.Log($"{title} [reporttype:{outputReportType}] Output", result.Output);
202200
203201
}
204202

0 commit comments

Comments
 (0)