mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
switched logging to DEBUG instead of info.
This commit is contained in:
parent
01aafe3854
commit
207f8fe916
1 changed files with 3 additions and 1 deletions
|
@ -39,6 +39,8 @@ class Config:
|
|||
|
||||
def __init__(self):
|
||||
for k, v in self._DEFAULTS.items():
|
||||
if k in os.environ:
|
||||
log.debug(f"ENV override for {k} = {os.environ[k]}")
|
||||
setattr(self, k, os.environ[k] if k in os.environ else v)
|
||||
|
||||
for k, v in self.__dict__.items():
|
||||
|
@ -64,7 +66,7 @@ class Config:
|
|||
|
||||
assert isinstance(self.YTDL_OPTIONS, dict)
|
||||
if len(self.YTDL_OPTIONS) != 0:
|
||||
log.info(f"Using custom yt-dlp options:\n{json.dumps(self.YTDL_OPTIONS, indent=2, ensure_ascii=False)}")
|
||||
log.debug(f"Using custom yt-dlp options:\n{json.dumps(self.YTDL_OPTIONS, indent=2, ensure_ascii=False)}")
|
||||
except (json.decoder.JSONDecodeError, AssertionError) as e:
|
||||
log.error(f"Unable to parse YTDL_OPTIONS value. {str(e)}")
|
||||
sys.exit(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue