@@ -244,17 +244,17 @@ void IConfigurationExtensionsLogger.LogInvalidConfigurationValue(string key, str
244
244
#if NET8_0_OR_GREATER
245
245
[ Event ( 26 , Message = "{0} loaded successfully from '{1}'." , Level = EventLevel . Informational ) ]
246
246
internal void MtlsCertificateLoaded ( string certificateType , string filePath ) =>
247
- this . WriteEvent ( 25 , certificateType , filePath ) ;
247
+ this . WriteEvent ( 26 , certificateType , filePath ) ;
248
248
249
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
- string error ) => this . WriteEvent ( 26 , certificateType , filePath , error ) ;
253
+ string error ) => this . WriteEvent ( 27 , certificateType , filePath , error ) ;
254
254
255
255
[ Event ( 28 , Message = "{0} file not found at path: '{1}'." , Level = EventLevel . Error ) ]
256
256
internal void MtlsCertificateFileNotFound ( string certificateType , string filePath ) =>
257
- this . WriteEvent ( 27 , certificateType , filePath ) ;
257
+ this . WriteEvent ( 28 , certificateType , filePath ) ;
258
258
259
259
[ Event (
260
260
29 ,
@@ -263,7 +263,7 @@ internal void MtlsCertificateFileNotFound(string certificateType, string filePat
263
263
internal void MtlsFilePermissionCheckFailed (
264
264
string certificateType ,
265
265
string filePath ,
266
- string error ) => this . WriteEvent ( 28 , certificateType , filePath , error ) ;
266
+ string error ) => this . WriteEvent ( 29 , certificateType , filePath , error ) ;
267
267
268
268
[ Event (
269
269
30 ,
@@ -272,7 +272,7 @@ internal void MtlsFilePermissionCheckFailed(
272
272
internal void MtlsFilePermissionWarning (
273
273
string certificateType ,
274
274
string filePath ,
275
- string warning ) => this . WriteEvent ( 29 , certificateType , filePath , warning ) ;
275
+ string warning ) => this . WriteEvent ( 30 , certificateType , filePath , warning ) ;
276
276
277
277
[ Event (
278
278
31 ,
@@ -281,33 +281,33 @@ internal void MtlsFilePermissionWarning(
281
281
internal void MtlsCertificateChainValidationFailed (
282
282
string certificateType ,
283
283
string subject ,
284
- string errors ) => this . WriteEvent ( 30 , certificateType , subject , errors ) ;
284
+ string errors ) => this . WriteEvent ( 31 , certificateType , subject , errors ) ;
285
285
286
286
[ Event (
287
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
- this . WriteEvent ( 31 , certificateType , subject ) ;
291
+ this . WriteEvent ( 32 , certificateType , subject ) ;
292
292
293
293
[ Event (
294
294
33 ,
295
295
Message = "Server certificate validated successfully for '{0}'." ,
296
296
Level = EventLevel . Informational ) ]
297
- internal void MtlsServerCertificateValidated ( string subject ) => this . WriteEvent ( 32 , subject ) ;
297
+ internal void MtlsServerCertificateValidated ( string subject ) => this . WriteEvent ( 33 , subject ) ;
298
298
299
299
[ Event (
300
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
- this . WriteEvent ( 33 , subject , errors ) ;
304
+ this . WriteEvent ( 34 , subject , errors ) ;
305
305
306
306
[ Event (
307
307
35 ,
308
308
Message = "mTLS configuration enabled. Client certificate: '{0}'." ,
309
309
Level = EventLevel . Informational ) ]
310
310
internal void MtlsConfigurationEnabled ( string clientCertificateSubject ) =>
311
- this . WriteEvent ( 34 , clientCertificateSubject ) ;
311
+ this . WriteEvent ( 35 , clientCertificateSubject ) ;
312
312
#endif
313
313
}
0 commit comments