From 573d6e233554d72f4225baf5ac827c3c47b0a682 Mon Sep 17 00:00:00 2001 From: Thomas Hilzendegen Date: Wed, 15 May 2024 12:25:28 +0200 Subject: [PATCH] refactor(idsrv): group logging ids --- .../LoggingEventIds.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Thinktecture.Relay.IdentityServer/LoggingEventIds.cs b/src/Thinktecture.Relay.IdentityServer/LoggingEventIds.cs index 436f2dbe4..14734734d 100644 --- a/src/Thinktecture.Relay.IdentityServer/LoggingEventIds.cs +++ b/src/Thinktecture.Relay.IdentityServer/LoggingEventIds.cs @@ -2,9 +2,9 @@ namespace Thinktecture.Relay.IdentityServer; internal static class LoggingEventIds { - public const int RotateCertificateFileStoreRebuildingCertificateCache = 1; - public const int RotateCertificateFileStoreCreateCertificate = 2; - public const int RotateCertificateFileStoreRemoveOutdatedCertificate = 3; - public const int RotateCertificateFileStoreLoadCertificate = 4; - public const int RotateCertificateFileStoreDeleteCertificateFile = 5; + public const int RotateCertificateFileStoreRebuildingCertificateCache = 10001; + public const int RotateCertificateFileStoreCreateCertificate = 10002; + public const int RotateCertificateFileStoreRemoveOutdatedCertificate = 10003; + public const int RotateCertificateFileStoreLoadCertificate = 10004; + public const int RotateCertificateFileStoreDeleteCertificateFile = 10005; }