@@ -242,22 +242,22 @@ void IConfigurationExtensionsLogger.LogInvalidConfigurationValue(string key, str
242
242
}
243
243
244
244
#if NET8_0_OR_GREATER
245
- [ Event ( 25 , Message = "{0} loaded successfully from '{1}'." , Level = EventLevel . Informational ) ]
245
+ [ Event ( 26 , Message = "{0} loaded successfully from '{1}'." , Level = EventLevel . Informational ) ]
246
246
internal void MtlsCertificateLoaded ( string certificateType , string filePath ) =>
247
247
this . WriteEvent ( 25 , certificateType , filePath ) ;
248
248
249
- [ Event ( 26 , Message = "Failed to load {0} from '{1}'. Error: {2}" , Level = EventLevel . Error ) ]
249
+ [ Event ( 27 , Message = "Failed to load {0} from '{1}'. Error: {2}" , Level = EventLevel . Error ) ]
250
250
internal void MtlsCertificateLoadFailed (
251
251
string certificateType ,
252
252
string filePath ,
253
253
string error ) => this . WriteEvent ( 26 , certificateType , filePath , error ) ;
254
254
255
- [ Event ( 27 , Message = "{0} file not found at path: '{1}'." , Level = EventLevel . Error ) ]
255
+ [ Event ( 28 , Message = "{0} file not found at path: '{1}'." , Level = EventLevel . Error ) ]
256
256
internal void MtlsCertificateFileNotFound ( string certificateType , string filePath ) =>
257
257
this . WriteEvent ( 27 , certificateType , filePath ) ;
258
258
259
259
[ Event (
260
- 28 ,
260
+ 29 ,
261
261
Message = "File permission check failed for {0} at '{1}'. Error: {2}" ,
262
262
Level = EventLevel . Warning ) ]
263
263
internal void MtlsFilePermissionCheckFailed (
@@ -266,7 +266,7 @@ internal void MtlsFilePermissionCheckFailed(
266
266
string error ) => this . WriteEvent ( 28 , certificateType , filePath , error ) ;
267
267
268
268
[ Event (
269
- 29 ,
269
+ 30 ,
270
270
Message = "File permission warning for {0} at '{1}': {2}" ,
271
271
Level = EventLevel . Warning ) ]
272
272
internal void MtlsFilePermissionWarning (
@@ -275,7 +275,7 @@ internal void MtlsFilePermissionWarning(
275
275
string warning ) => this . WriteEvent ( 29 , certificateType , filePath , warning ) ;
276
276
277
277
[ Event (
278
- 30 ,
278
+ 31 ,
279
279
Message = "{0} chain validation failed for certificate '{1}'. Errors: {2}" ,
280
280
Level = EventLevel . Error ) ]
281
281
internal void MtlsCertificateChainValidationFailed (
@@ -284,27 +284,27 @@ internal void MtlsCertificateChainValidationFailed(
284
284
string errors ) => this . WriteEvent ( 30 , certificateType , subject , errors ) ;
285
285
286
286
[ Event (
287
- 31 ,
287
+ 32 ,
288
288
Message = "{0} chain validated successfully for certificate '{1}'." ,
289
289
Level = EventLevel . Informational ) ]
290
290
internal void MtlsCertificateChainValidated ( string certificateType , string subject ) =>
291
291
this . WriteEvent ( 31 , certificateType , subject ) ;
292
292
293
293
[ Event (
294
- 32 ,
294
+ 33 ,
295
295
Message = "Server certificate validated successfully for '{0}'." ,
296
296
Level = EventLevel . Informational ) ]
297
297
internal void MtlsServerCertificateValidated ( string subject ) => this . WriteEvent ( 32 , subject ) ;
298
298
299
299
[ Event (
300
- 33 ,
300
+ 34 ,
301
301
Message = "Server certificate validation failed for '{0}'. Errors: {1}" ,
302
302
Level = EventLevel . Error ) ]
303
303
internal void MtlsServerCertificateValidationFailed ( string subject , string errors ) =>
304
304
this . WriteEvent ( 33 , subject , errors ) ;
305
305
306
306
[ Event (
307
- 34 ,
307
+ 35 ,
308
308
Message = "mTLS configuration enabled. Client certificate: '{0}'." ,
309
309
Level = EventLevel . Informational ) ]
310
310
internal void MtlsConfigurationEnabled ( string clientCertificateSubject ) =>
0 commit comments