Skip to content

Commit

Permalink
Writes report file with info-level message. Closes dotnet#781 (dotnet…
Browse files Browse the repository at this point in the history
  • Loading branch information
waldekmastykarz authored Jun 18, 2024
1 parent ebd4def commit 8b1a7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-proxy-plugins/Reporters/BaseReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ e.GlobalData[ProxyUtils.ReportsKey] is not Dictionary<string, object> reports ||
fileName = $"{report.Key}_{Name}_{DateTime.Now:yyyyMMddHHmmss}{FileExtension}";
}

Logger.LogDebug("Writing report {reportKey} to {fileName}...", report.Key, fileName);
Logger.LogInformation("Writing report {reportKey} to {fileName}...", report.Key, fileName);
File.WriteAllText(fileName, reportContents);
}

Expand Down

0 comments on commit 8b1a7a6

Please sign in to comment.