Skip to content

Commit 3310aad

Browse files
authored
Fix bad merge to event numbers (#65392)
1 parent 16cceaf commit 3310aad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Shared/CertificateGeneration/CertificateManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,10 +1398,10 @@ public sealed class CertificateManagerEventSource : EventSource
13981398
internal void UnixSuggestAppendingToEnvironmentVariable(string certDir, string envVarName) => WriteEvent(114, certDir, envVarName);
13991399

14001400
[Event(115, Level = EventLevel.Verbose, Message = "Successfully trusted the certificate in the Windows certificate store via WSL.")]
1401-
internal void WslWindowsTrustSucceeded() => WriteEvent(113);
1401+
internal void WslWindowsTrustSucceeded() => WriteEvent(115);
14021402

14031403
[Event(116, Level = EventLevel.Warning, Message = "Failed to trust the certificate in the Windows certificate store via WSL.")]
1404-
internal void WslWindowsTrustFailed() => WriteEvent(114);
1404+
internal void WslWindowsTrustFailed() => WriteEvent(116);
14051405

14061406
[Event(117, Level = EventLevel.Warning, Message = "Failed to trust the certificate in the Windows certificate store via WSL: {0}.")]
14071407
internal void WslWindowsTrustException(string exceptionMessage) => WriteEvent(117, exceptionMessage);

0 commit comments

Comments
 (0)