From 2266197d8d09a6e1bb8a400f0b9a5efc7acb3fdd 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 307f45b1b..45ea40ee8 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