savify icon indicating copy to clipboard operation
savify copied to clipboard

self.logger.info(f'Downloading {len(queue)} songs...') ^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'info' [BUG]

Open nicoalma opened this issue 1 year ago • 1 comments

Describe the bug Can not pass this error

File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/savify/savify.py", line 106, in download self.logger.info(f'Downloading {len(queue)} songs...') ^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'info'

  • MacOS Ventura M1

nicoalma avatar Jul 05 '23 18:07 nicoalma

I had this also, it seems the example are out of date. Pass in your own custom logger instance instead of passing log_level and it should work

NFS002 avatar Aug 13 '23 10:08 NFS002