[skip ci] Don't log nptickets in debug builds

This commit is contained in:
jvyden 2022-02-16 19:02:07 -05:00
commit 8fdd464e2e
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -34,10 +34,6 @@ public class LoginController : ControllerBase
await this.Request.Body.CopyToAsync(ms);
byte[] loginData = ms.ToArray();
#if DEBUG
await IOFile.WriteAllBytesAsync($"npTicket-{TimestampHelper.TimestampMillis}.txt", loginData);
#endif
NPTicket? npTicket;
try
{