This repository was archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSerilogWebClassicWebApiLoggerConfigurationExtensions.cs
72 lines (68 loc) · 3.68 KB
/
SerilogWebClassicWebApiLoggerConfigurationExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using Serilog.Configuration;
using SerilogWeb.Classic.WebApi.Enrichers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serilog
{
/// <summary>
/// Extends <see cref="LoggerConfiguration"/> to add enrichers for SerilogWeb.Classic.WebApi logging module
/// </summary>
public static class SerilogWebClassicWebApiLoggerConfigurationExtensions
{
/// <summary>
/// Enrich log events with the name of the current Web API action.
/// </summary>
/// <param name="enrichmentConfiguration">Logger enrichment configuration.</param>
/// <param name="propertyName">Name of the property to log.</param>
/// <returns>Configuration object allowing method chaining.</returns>
public static LoggerConfiguration WithWebApiActionName(
this LoggerEnrichmentConfiguration enrichmentConfiguration,
string propertyName = WebApiActionNameEnricher.WebApiActionPropertyName)
{
if (enrichmentConfiguration == null) throw new ArgumentNullException(nameof(enrichmentConfiguration));
return enrichmentConfiguration.With(new WebApiActionNameEnricher(propertyName));
}
/// <summary>
/// Enrich log events with the controller name for the current Web API action.
/// </summary>
/// <param name="enrichmentConfiguration">Logger enrichment configuration.</param>
/// <param name="propertyName">Name of the property to log.</param>
/// <returns>Configuration object allowing method chaining.</returns>
public static LoggerConfiguration WithWebApiControllerName(
this LoggerEnrichmentConfiguration enrichmentConfiguration,
string propertyName = WebApiControllerNameEnricher.WebApiControllerPropertyName)
{
if (enrichmentConfiguration == null) throw new ArgumentNullException(nameof(enrichmentConfiguration));
return enrichmentConfiguration.With(new WebApiControllerNameEnricher(propertyName));
}
/// <summary>
/// Enrich log events with the route data for the current Web API action.
/// </summary>
/// <param name="enrichmentConfiguration">Logger enrichment configuration.</param>
/// <param name="propertyName">Name of the property to log.</param>
/// <returns>Configuration object allowing method chaining.</returns>
public static LoggerConfiguration WithWebApiRouteData(
this LoggerEnrichmentConfiguration enrichmentConfiguration,
string propertyName = WebApiRouteDataEnricher.WebApiRouteDataPropertyName)
{
if (enrichmentConfiguration == null) throw new ArgumentNullException(nameof(enrichmentConfiguration));
return enrichmentConfiguration.With(new WebApiRouteDataEnricher(propertyName));
}
/// <summary>
/// Enrich log events with the template for the current Web API action.
/// </summary>
/// <param name="enrichmentConfiguration">Logger enrichment configuration.</param>
/// <param name="propertyName">Name of the property to log.</param>
/// <returns>Configuration object allowing method chaining.</returns>
public static LoggerConfiguration WithWebApiRouteTemplate(
this LoggerEnrichmentConfiguration enrichmentConfiguration,
string propertyName = WebApiRouteTemplateEnricher.WebApiRouteTemplatePropertyName)
{
if (enrichmentConfiguration == null) throw new ArgumentNullException(nameof(enrichmentConfiguration));
return enrichmentConfiguration.With(new WebApiRouteTemplateEnricher(propertyName));
}
}
}