slightly less verbose logging

This commit is contained in:
sam 2024-10-29 21:32:33 +01:00
parent dce148b844
commit 8f154ce5ae
Signed by: sam
GPG key ID: 5F3C3C1B3166639D
5 changed files with 4 additions and 23 deletions

View file

@ -61,7 +61,6 @@ public class WebhookExecutorService(
public void QueueLog(Guild guildConfig, LogChannelType logChannelType, IEmbed embed)
{
var logChannel = GetLogChannel(guildConfig, logChannelType, channelId: null, userId: null);
_logger.Debug("Channel to log {Type} to: {LogChannel}", logChannelType, logChannel);
if (logChannel == null)
return;
@ -73,7 +72,6 @@ public class WebhookExecutorService(
/// </summary>
public void QueueLog(ulong channelId, IEmbed embed)
{
_logger.Debug("Channel to log to: {LogChannel}", channelId);
if (channelId == 0)
return;