From 5b736ea61a874c6aa600a5ec521712e2a665eaea Mon Sep 17 00:00:00 2001 From: V1ck3s Date: Fri, 2 Jan 2026 17:45:28 +0100 Subject: [PATCH] security: remove token from log output --- octo-fiesta/Services/DeezerDownloadService.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/octo-fiesta/Services/DeezerDownloadService.cs b/octo-fiesta/Services/DeezerDownloadService.cs index a38110f..0442bd6 100644 --- a/octo-fiesta/Services/DeezerDownloadService.cs +++ b/octo-fiesta/Services/DeezerDownloadService.cs @@ -244,8 +244,7 @@ public class DeezerDownloadService : IDownloadService _licenseToken = licenseToken.GetString(); } - _logger.LogInformation("Deezer token refreshed: {Token}...", - _apiToken?[..Math.Min(16, _apiToken?.Length ?? 0)]); + _logger.LogInformation("Deezer token refreshed successfully"); return true; }