mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-18 17:00:13 +00:00

- 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")
|