@@ -27,7 +27,7 @@ public static ExceptionlessLogLevel ToLogLevel(this LogLevel level) {
27
27
/// Adds Exceptionless to the logging pipeline using the <see cref="ExceptionlessClient.Default"/>.
28
28
/// </summary>
29
29
/// <param name="builder">The <see cref="ILoggingBuilder"/>.</param>
30
- /// <param name="client">If a client is not specified then the <see cref="ExceptionlessClient.Default"/> wil be used.</param>
30
+ /// <param name="client">If a client is not specified then the <see cref="ExceptionlessClient.Default"/> will be used.</param>
31
31
/// <returns>The <see cref="ILoggingBuilder"/>.</returns>
32
32
public static ILoggingBuilder AddExceptionless ( this ILoggingBuilder builder , ExceptionlessClient client = null ) {
33
33
builder . AddProvider ( new ExceptionlessLoggerProvider ( client ?? ExceptionlessClient . Default ) ) ;
@@ -65,12 +65,11 @@ public static ILoggingBuilder AddExceptionless(this ILoggingBuilder builder, Act
65
65
builder . AddProvider ( new ExceptionlessLoggerProvider ( configure ) ) ;
66
66
return builder ;
67
67
}
68
- #region Obsolute
69
68
/// <summary>
70
69
/// Adds Exceptionless to the logging pipeline using the <see cref="ExceptionlessClient.Default"/>.
71
70
/// </summary>
72
71
/// <param name="factory">The <see cref="ILoggerFactory"/>.</param>
73
- /// <param name="client">If a client is not specified then the <see cref="ExceptionlessClient.Default"/> wil be used.</param>
72
+ /// <param name="client">If a client is not specified then the <see cref="ExceptionlessClient.Default"/> will be used.</param>
74
73
/// <returns>The <see cref="ILoggerFactory"/>.</returns>
75
74
[ Obsolete ( "Use ExceptionlessLoggerExtensions.AddExceptionless(ILoggingBuilder,ExceptionlessClient) instead." ) ]
76
75
public static ILoggerFactory AddExceptionless ( this ILoggerFactory factory , ExceptionlessClient client = null ) {
@@ -113,6 +112,5 @@ public static ILoggerFactory AddExceptionless(this ILoggerFactory factory, Actio
113
112
factory . AddProvider ( new ExceptionlessLoggerProvider ( configure ) ) ;
114
113
return factory ;
115
114
}
116
- #endregion
117
115
}
118
116
}
0 commit comments