mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
9 lines
143 B
Python
9 lines
143 B
Python
from app.settings import logger
|
|
|
|
|
|
class Log:
|
|
|
|
def __init__(self, msg):
|
|
if logger.enable:
|
|
print("\n🦋 " + msg + "\n")
|