From fe9b150205d88ddae9dbd02355fae9de2bca1359 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Sat, 23 Aug 2025 01:05:59 -0400 Subject: [PATCH] add missing Log.forf for ytimg --- src/invidious/yt_backend/connection_pool.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/invidious/yt_backend/connection_pool.cr b/src/invidious/yt_backend/connection_pool.cr index 307f45b1..45ea40ee 100644 --- a/src/invidious/yt_backend/connection_pool.cr +++ b/src/invidious/yt_backend/connection_pool.cr @@ -144,7 +144,7 @@ def get_ytimg_pool(subdomain) if pool = YTIMG_POOLS[subdomain]? return pool else - Log.info { "ytimg_pool: Creating a new HTTP pool for \"https://#{subdomain}.ytimg.com\"" } + Log.forf.info { "Creating a new HTTP pool for \"https://#{subdomain}.ytimg.com\"" } pool = YoutubeConnectionPool.new(URI.parse("https://#{subdomain}.ytimg.com"), capacity: CONFIG.pool_size) YTIMG_POOLS[subdomain] = pool