Skip to content

Commit

Permalink
refactor(idsrv): group logging ids
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashilzendegen committed May 15, 2024
1 parent 4d9567c commit 573d6e2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Thinktecture.Relay.IdentityServer/LoggingEventIds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 573d6e2

Please sign in to comment.