1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-05 10:29:35 +02:00

YoutubeDL: If the logger is set call its warning method in report_warning

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-03-09 14:53:07 +01:00
parent edb7fc5435
commit 6d07ce0162

View File

@ -370,6 +370,9 @@ def report_warning(self, message):
Print the message to stderr, it will be prefixed with 'WARNING:'
If stderr is a tty file the 'WARNING:' will be colored
'''
if self.params.get('logger') is not None:
self.params['logger'].warning(message)
else:
if self._err_file.isatty() and os.name != 'nt':
_msg_header = '\033[0;33mWARNING:\033[0m'
else: