From 3c5f51e495152be53a6660a556c9e071be0330b7 Mon Sep 17 00:00:00 2001 From: Glax Date: Thu, 8 May 2025 03:48:57 +0200 Subject: [PATCH] fix time formatting --- API/MangaDownloadClients/DownloadClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/MangaDownloadClients/DownloadClient.cs b/API/MangaDownloadClients/DownloadClient.cs index 2a5dd22..b39b08a 100644 --- a/API/MangaDownloadClients/DownloadClient.cs +++ b/API/MangaDownloadClients/DownloadClient.cs @@ -31,7 +31,7 @@ internal abstract class DownloadClient _lastExecutedRateLimit.TryAdd(requestType, now.Subtract(timeBetweenRequests)); TimeSpan rateLimitTimeout = timeBetweenRequests.Subtract(now.Subtract(_lastExecutedRateLimit[requestType])); - Log.Debug($"Request limit {rateLimit}/Minute timeBetweenRequests: {timeBetweenRequests:ss.fff} Timeout: {rateLimitTimeout:ss.fff}"); + Log.Debug($"Request limit {rateLimit}/Minute timeBetweenRequests: {timeBetweenRequests:ss'.'fffff} Timeout: {rateLimitTimeout:ss'.'fffff}"); if (rateLimitTimeout > TimeSpan.Zero) {