Skip to content

Commit

Permalink
Merge pull request #1440 from filipw/patch-1
Browse files Browse the repository at this point in the history
Fixed typos in logging
  • Loading branch information
brockallen committed Oct 23, 2023
2 parents 77d9956 + 674c268 commit dcc3cfa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class KeyManager : IKeyManager
/// <inheritdoc />
public async Task<IEnumerable<KeyContainer>> GetCurrentKeysAsync()
{
using var activity = Tracing.ServiceActivitySource.StartActivity("KeyManageer.GetCurrentKeys");
using var activity = Tracing.ServiceActivitySource.StartActivity("KeyManager.GetCurrentKeys");

_logger.LogTrace("Getting the current key.");

Expand All @@ -88,7 +88,7 @@ public async Task<IEnumerable<KeyContainer>> GetCurrentKeysAsync()
/// <inheritdoc />
public async Task<IEnumerable<KeyContainer>> GetAllKeysAsync()
{
using var activity = Tracing.ServiceActivitySource.StartActivity("KeyManageer.GetAllKeys");
using var activity = Tracing.ServiceActivitySource.StartActivity("KeyManager.GetAllKeys");

_logger.LogTrace("Getting all the keys.");

Expand Down Expand Up @@ -685,4 +685,4 @@ internal bool CanBeUsedAsCurrentSigningKey(KeyContainer key, bool ignoreActiveDe

return true;
}
}
}

0 comments on commit dcc3cfa

Please sign in to comment.