Reduce the log level of various common events
This commit is contained in:
@@ -29,7 +29,7 @@ namespace PluralKit.Bot
|
||||
|
||||
public Task<IEnumerable<ProxyDatabaseResult>> GetResultsFor(ulong account)
|
||||
{
|
||||
_logger.Debug("Looking up members for account {Account} in cache...", account);
|
||||
_logger.Verbose("Looking up members for account {Account} in cache...", account);
|
||||
return _cache.GetOrCreateAsync(GetKey(account), (entry) => FetchResults(account, entry));
|
||||
}
|
||||
|
||||
|
@@ -78,7 +78,7 @@ namespace PluralKit.Bot
|
||||
|
||||
private async Task<DiscordWebhookClient> GetClientFor(IWebhook webhook)
|
||||
{
|
||||
_logger.Debug("Looking for client for webhook {Webhook} in cache", webhook.Id);
|
||||
_logger.Verbose("Looking for client for webhook {Webhook} in cache", webhook.Id);
|
||||
return await _cache.GetOrCreateAsync($"_webhook_client_{webhook.Id}",
|
||||
(entry) => MakeCachedClientFor(entry, webhook));
|
||||
}
|
||||
|
Reference in New Issue
Block a user