From 86fd24f7566a22b3eafe3ffafef6f48abdd9beb7 Mon Sep 17 00:00:00 2001 From: defnotken Date: Thu, 20 Nov 2025 09:33:18 -0600 Subject: [PATCH] clean up logging --- .../LightlessSyncAuthService/Services/GeoIPService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LightlessSyncServer/LightlessSyncAuthService/Services/GeoIPService.cs b/LightlessSyncServer/LightlessSyncAuthService/Services/GeoIPService.cs index 9800862..15aa928 100644 --- a/LightlessSyncServer/LightlessSyncAuthService/Services/GeoIPService.cs +++ b/LightlessSyncServer/LightlessSyncAuthService/Services/GeoIPService.cs @@ -60,7 +60,7 @@ public class GeoIPService : IHostedService continent = "NA-E"; } - _logger.LogInformation("Connecting {countryIso} to {continent}", countryIso, continent); + _logger.LogDebug("Connecting {countryIso} to {continent}", countryIso, continent); } return continent ?? "*";