add missing Log.forf for ytimg

This commit is contained in:
Fijxu 2025-08-23 01:05:59 -04:00
parent 3e847b8412
commit fe9b150205
No known key found for this signature in database
GPG Key ID: 32C1DDF333EDA6A4

View File

@ -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