mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-13 22:47:22 +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")
|