mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-24 03:56:27 +00:00
Improve IHttpClient factories (#20)
Codestyle fixes Setup CODEOWNERS Setup dependabot
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace System.Logging
|
||||
namespace System.Logging;
|
||||
|
||||
public sealed class DebugLogsWriter : ILogsWriter
|
||||
{
|
||||
public sealed class DebugLogsWriter : ILogsWriter
|
||||
public void WriteLog(Log log)
|
||||
{
|
||||
public void WriteLog(Log log)
|
||||
{
|
||||
Debug.WriteLine($"{log.LogTime} - {log.Category} - {log.EventId} - {log.CorrelationVector} - {log.LogLevel} - {log.Message}{Environment.NewLine}{log.Exception}");
|
||||
}
|
||||
Debug.WriteLine($"{log.LogTime} - {log.Category} - {log.EventId} - {log.CorrelationVector} - {log.LogLevel} - {log.Message}{Environment.NewLine}{log.Exception}");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user