mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +01:00
fix some log calls
This commit is contained in:
parent
2f1b1f4b27
commit
9ce8d411ee
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue