fix some log calls

This commit is contained in:
rootdarkarchon
2023-10-12 18:32:23 +02:00
parent 2f1b1f4b27
commit 9ce8d411ee
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ public class DiscordBotServices
verificationTaskCts = new CancellationTokenSource(); verificationTaskCts = new CancellationTokenSource();
while (!verificationTaskCts.IsCancellationRequested) while (!verificationTaskCts.IsCancellationRequested)
{ {
Logger.LogInformation("Processing Verification Queue, Entries: {entr}", VerificationQueue.Count); Logger.LogDebug("Processing Verification Queue, Entries: {entr}", VerificationQueue.Count);
if (VerificationQueue.TryDequeue(out var queueitem)) if (VerificationQueue.TryDequeue(out var queueitem))
{ {
try try

View File

@@ -94,7 +94,7 @@ public partial class MareWizardModule
{ {
if (!(await ValidateInteraction().ConfigureAwait(false))) return; if (!(await ValidateInteraction().ConfigureAwait(false))) return;
_logger.LogInformation("{method}:{userId}:{uid}", nameof(ComponentRegisterVerify), Context.Interaction.User.Id, verificationCode); _logger.LogInformation("{method}:{userId}:{uid}", nameof(ComponentRegisterVerifyCheck), Context.Interaction.User.Id, verificationCode);
EmbedBuilder eb = new(); EmbedBuilder eb = new();
ComponentBuilder cb = new(); ComponentBuilder cb = new();