diff --git a/KfChatDotNetBot/Services/KiwiFlare.cs b/KfChatDotNetBot/Services/KiwiFlare.cs index 9ae8457..adcf723 100644 --- a/KfChatDotNetBot/Services/KiwiFlare.cs +++ b/KfChatDotNetBot/Services/KiwiFlare.cs @@ -84,14 +84,14 @@ public class KiwiFlare(string kfDomain, string? proxy = null, CancellationToken? nonce++; var input = Encoding.UTF8.GetBytes($"{challenge.Salt}{nonce}"); if (!TestHash(SHA256.HashData(input), challenge.Difficulty)) continue; - _logger.Debug($"Hash passed the test, nonce: {nonce}"); + _logger.Info($"Hash passed the test, nonce: {nonce}"); return Task.FromResult(new KiwiFlareChallengeSolutionModel { Nonce = nonce, Salt = challenge.Salt }); } - } + } public async Task SolveChallenge(KiwiFlareChallengeModel challenge) {