mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
d98cc0547e
- refactor function locations - add logger - check for new tracks instead of re-processing all files
8 lines
142 B
Python
8 lines
142 B
Python
from app.settings import logger
|
|
|
|
|
|
class Log:
|
|
def __init__(self, msg):
|
|
if logger.enable:
|
|
print("\n🦋 " + msg + "\n")
|