mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-21 01:19:29 +00:00
77a47b5d69
Implement default logger providers that would use CV ILogsWriter for quick implementation of logs sink Co-authored-by: Alexandru Macocian <almacoci@microsoft.com>
15 lines
406 B
C#
15 lines
406 B
C#
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
|
|
namespace WpfExtended.Models
|
|
{
|
|
public sealed class Log
|
|
{
|
|
public DateTime LogTime { get; set; }
|
|
public string Category { get; set; }
|
|
public string EventId { get; set; }
|
|
public LogLevel LogLevel { get; set; }
|
|
public string Message { get; set; }
|
|
public string CorrelationVector { get; set; }
|
|
}
|
|
} |