Do not log wrong and correct watchdog token into info logs (#5133)

* Lets not do this?

* Webedit 2
This commit is contained in:
Vasilis
2024-05-14 03:12:24 +03:00
committed by GitHub
parent a9ed53f47b
commit 51f0c60bd3

View File

@@ -68,7 +68,7 @@ namespace Robust.Server.ServerStatus
if (auth != _watchdogToken)
{
// Holy shit nobody read these logs please.
_sawmill.Info(@"Failed auth: ""{0}"" vs ""{1}""", auth, _watchdogToken);
_sawmill.Verbose(@"Failed auth: ""{0}"" vs ""{1}""", auth, _watchdogToken);
await context.RespondErrorAsync(HttpStatusCode.Unauthorized);
return true;
}