[ie/youtube] Drop support for bun<1.2.11 and bun>1.3.14 (#16786)

Closes #16766
Authored by: bashonly
This commit is contained in:
bashonly
2026-05-24 23:07:42 +00:00
committed by GitHub
parent b536d72c86
commit 98e42eb044
6 changed files with 22 additions and 8 deletions
+2 -2
View File
@@ -64,9 +64,9 @@ class YoutubeIEContentProviderLogger(IEContentProviderLogger):
if self.log_level <= self.LogLevel.DEBUG:
self.__ie.write_debug(self._format_msg(message), only_once=once)
def info(self, message: str):
def info(self, message: str, *, once=False):
if self.log_level <= self.LogLevel.INFO:
self.__ie.to_screen(self._format_msg(message))
self.__ie.to_screen(self._format_msg(message), only_once=once)
def warning(self, message: str, *, once=False):
if self.log_level <= self.LogLevel.WARNING: