18 changed files with 1 additions and 315 deletions
@ -1,7 +0,0 @@ |
|||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<ItemGroup> |
|||
<PackageReference Include="Serilog" Version="2.5.0" /> |
|||
<PackageReference Include="Serilog.Sinks.Trace" Version="2.1.0" /> |
|||
<PackageReference Include="Serilog.Sinks.Debug" Version="1.0.0" /> |
|||
</ItemGroup> |
|||
</Project> |
|||
@ -1,10 +0,0 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
<PropertyGroup> |
|||
<TargetFramework>netstandard2.0</TargetFramework> |
|||
</PropertyGroup> |
|||
<ItemGroup> |
|||
<ProjectReference Include="..\Avalonia.Base\Avalonia.Base.csproj" /> |
|||
<ProjectReference Include="..\Avalonia.Controls\Avalonia.Controls.csproj" /> |
|||
</ItemGroup> |
|||
<Import Project="..\..\build\Serilog.props" /> |
|||
</Project> |
|||
@ -1,103 +0,0 @@ |
|||
using System; |
|||
using Avalonia.Controls; |
|||
using Serilog; |
|||
using Serilog.Configuration; |
|||
using Serilog.Filters; |
|||
using SerilogLevel = Serilog.Events.LogEventLevel; |
|||
|
|||
namespace Avalonia.Logging.Serilog |
|||
{ |
|||
/// <summary>
|
|||
/// Extension methods for Serilog logging.
|
|||
/// </summary>
|
|||
public static class SerilogExtensions |
|||
{ |
|||
private const string DefaultTemplate = "[{Area}] {Message} ({SourceType} #{SourceHash})"; |
|||
|
|||
/// <summary>
|
|||
/// Logs Avalonia events to the <see cref="System.Diagnostics.Debug"/> sink.
|
|||
/// </summary>
|
|||
/// <typeparam name="T">The application class type.</typeparam>
|
|||
/// <param name="builder">The app builder instance.</param>
|
|||
/// <param name="level">The minimum level to log.</param>
|
|||
/// <returns>The app builder instance.</returns>
|
|||
public static T LogToDebug<T>( |
|||
this T builder, |
|||
LogEventLevel level = LogEventLevel.Warning) |
|||
where T : AppBuilderBase<T>, new() |
|||
{ |
|||
SerilogLogger.Initialize(new LoggerConfiguration() |
|||
.MinimumLevel.Is((SerilogLevel)level) |
|||
.Enrich.FromLogContext() |
|||
.WriteTo.Debug(outputTemplate: DefaultTemplate) |
|||
.CreateLogger()); |
|||
return builder; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Logs Avalonia events to the <see cref="System.Diagnostics.Debug"/> sink.
|
|||
/// </summary>
|
|||
/// <typeparam name="T">The application class type.</typeparam>
|
|||
/// <param name="builder">The app builder instance.</param>
|
|||
/// <param name="area">The area to log. Valid values are listed in <see cref="LogArea"/>.</param>
|
|||
/// <param name="level">The minimum level to log.</param>
|
|||
/// <returns>The app builder instance.</returns>
|
|||
public static T LogToDebug<T>( |
|||
this T builder, |
|||
string area, |
|||
LogEventLevel level = LogEventLevel.Warning) |
|||
where T : AppBuilderBase<T>, new() |
|||
{ |
|||
SerilogLogger.Initialize(new LoggerConfiguration() |
|||
.MinimumLevel.Is((SerilogLevel)level) |
|||
.Filter.ByIncludingOnly(Matching.WithProperty("Area", area)) |
|||
.Enrich.FromLogContext() |
|||
.WriteTo.Debug(outputTemplate: DefaultTemplate) |
|||
.CreateLogger()); |
|||
return builder; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Logs Avalonia events to the <see cref="System.Diagnostics.Trace"/> sink.
|
|||
/// </summary>
|
|||
/// <typeparam name="T">The application class type.</typeparam>
|
|||
/// <param name="builder">The app builder instance.</param>
|
|||
/// <param name="level">The minimum level to log.</param>
|
|||
/// <returns>The app builder instance.</returns>
|
|||
public static T LogToTrace<T>( |
|||
this T builder, |
|||
LogEventLevel level = LogEventLevel.Warning) |
|||
where T : AppBuilderBase<T>, new() |
|||
{ |
|||
SerilogLogger.Initialize(new LoggerConfiguration() |
|||
.MinimumLevel.Is((SerilogLevel)level) |
|||
.Enrich.FromLogContext() |
|||
.WriteTo.Trace(outputTemplate: DefaultTemplate) |
|||
.CreateLogger()); |
|||
return builder; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Logs Avalonia events to the <see cref="System.Diagnostics.Trace"/> sink.
|
|||
/// </summary>
|
|||
/// <typeparam name="T">The application class type.</typeparam>
|
|||
/// <param name="builder">The app builder instance.</param>
|
|||
/// <param name="area">The area to log. Valid values are listed in <see cref="LogArea"/>.</param>
|
|||
/// <param name="level">The minimum level to log.</param>
|
|||
/// <returns>The app builder instance.</returns>
|
|||
public static T LogToTrace<T>( |
|||
this T builder, |
|||
string area, |
|||
LogEventLevel level = LogEventLevel.Warning) |
|||
where T : AppBuilderBase<T>, new() |
|||
{ |
|||
SerilogLogger.Initialize(new LoggerConfiguration() |
|||
.MinimumLevel.Is((SerilogLevel)level) |
|||
.Filter.ByIncludingOnly(Matching.WithProperty("Area", area)) |
|||
.Enrich.FromLogContext() |
|||
.WriteTo.Trace(outputTemplate: DefaultTemplate) |
|||
.CreateLogger()); |
|||
return builder; |
|||
} |
|||
} |
|||
} |
|||
@ -1,151 +0,0 @@ |
|||
using System; |
|||
using Serilog; |
|||
using Serilog.Context; |
|||
using AvaloniaLogEventLevel = Avalonia.Logging.LogEventLevel; |
|||
using SerilogLogEventLevel = Serilog.Events.LogEventLevel; |
|||
|
|||
namespace Avalonia.Logging.Serilog |
|||
{ |
|||
/// <summary>
|
|||
/// Sends log output to serilog.
|
|||
/// </summary>
|
|||
public class SerilogLogger : ILogSink |
|||
{ |
|||
private readonly ILogger _output; |
|||
|
|||
/// <summary>
|
|||
/// Initializes a new instance of the <see cref="SerilogLogger"/> class.
|
|||
/// </summary>
|
|||
/// <param name="output">The serilog logger to use.</param>
|
|||
public SerilogLogger(ILogger output) |
|||
{ |
|||
_output = output; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Initializes the Avalonia logging with a new instance of a <see cref="SerilogLogger"/>.
|
|||
/// </summary>
|
|||
/// <param name="output">The serilog logger to use.</param>
|
|||
public static void Initialize(ILogger output) |
|||
{ |
|||
Logger.Sink = new SerilogLogger(output); |
|||
} |
|||
|
|||
public bool IsEnabled(LogEventLevel level, string area) |
|||
{ |
|||
return _output.IsEnabled((SerilogLogEventLevel)level); |
|||
} |
|||
|
|||
public void Log( |
|||
LogEventLevel level, |
|||
string area, |
|||
object source, |
|||
string messageTemplate) |
|||
{ |
|||
Contract.Requires<ArgumentNullException>(area != null); |
|||
Contract.Requires<ArgumentNullException>(messageTemplate != null); |
|||
|
|||
using (PushLogContextProperties(area, source)) |
|||
{ |
|||
_output.Write((SerilogLogEventLevel)level, messageTemplate); |
|||
} |
|||
} |
|||
|
|||
public void Log<T0>( |
|||
LogEventLevel level, |
|||
string area, object source, |
|||
string messageTemplate, |
|||
T0 propertyValue0) |
|||
{ |
|||
Contract.Requires<ArgumentNullException>(area != null); |
|||
Contract.Requires<ArgumentNullException>(messageTemplate != null); |
|||
|
|||
using (PushLogContextProperties(area, source)) |
|||
{ |
|||
_output.Write((SerilogLogEventLevel)level, messageTemplate, propertyValue0); |
|||
} |
|||
} |
|||
|
|||
public void Log<T0, T1>( |
|||
LogEventLevel level, |
|||
string area, |
|||
object source, |
|||
string messageTemplate, |
|||
T0 propertyValue0, |
|||
T1 propertyValue1) |
|||
{ |
|||
Contract.Requires<ArgumentNullException>(area != null); |
|||
Contract.Requires<ArgumentNullException>(messageTemplate != null); |
|||
|
|||
using (PushLogContextProperties(area, source)) |
|||
{ |
|||
_output.Write((SerilogLogEventLevel)level, messageTemplate, propertyValue0, propertyValue1); |
|||
} |
|||
} |
|||
|
|||
public void Log<T0, T1, T2>( |
|||
LogEventLevel level, |
|||
string area, |
|||
object source, |
|||
string messageTemplate, |
|||
T0 propertyValue0, |
|||
T1 propertyValue1, |
|||
T2 propertyValue2) |
|||
{ |
|||
Contract.Requires<ArgumentNullException>(area != null); |
|||
Contract.Requires<ArgumentNullException>(messageTemplate != null); |
|||
|
|||
using (PushLogContextProperties(area, source)) |
|||
{ |
|||
_output.Write((SerilogLogEventLevel)level, messageTemplate, propertyValue0, propertyValue1, propertyValue2); |
|||
} |
|||
} |
|||
|
|||
/// <inheritdoc/>
|
|||
public void Log( |
|||
AvaloniaLogEventLevel level, |
|||
string area, |
|||
object source, |
|||
string messageTemplate, |
|||
params object[] propertyValues) |
|||
{ |
|||
Contract.Requires<ArgumentNullException>(area != null); |
|||
Contract.Requires<ArgumentNullException>(messageTemplate != null); |
|||
|
|||
using (PushLogContextProperties(area, source)) |
|||
{ |
|||
_output.Write((SerilogLogEventLevel)level, messageTemplate, propertyValues); |
|||
} |
|||
} |
|||
|
|||
private static LogContextDisposable PushLogContextProperties(string area, object source) |
|||
{ |
|||
return new LogContextDisposable( |
|||
LogContext.PushProperty("Area", area), |
|||
LogContext.PushProperty("SourceType", source?.GetType()), |
|||
LogContext.PushProperty("SourceHash", source?.GetHashCode()) |
|||
); |
|||
} |
|||
|
|||
private readonly struct LogContextDisposable : IDisposable |
|||
{ |
|||
private readonly IDisposable _areaDisposable; |
|||
private readonly IDisposable _sourceTypeDisposable; |
|||
private readonly IDisposable _sourceHashDisposable; |
|||
|
|||
public LogContextDisposable(IDisposable areaDisposable, IDisposable sourceTypeDisposable, IDisposable sourceHashDisposable) |
|||
{ |
|||
_areaDisposable = areaDisposable; |
|||
_sourceTypeDisposable = sourceTypeDisposable; |
|||
_sourceHashDisposable = sourceHashDisposable; |
|||
} |
|||
|
|||
public void Dispose() |
|||
{ |
|||
_areaDisposable.Dispose(); |
|||
_sourceTypeDisposable.Dispose(); |
|||
_sourceHashDisposable.Dispose(); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue