6 lines
154 B
Python
6 lines
154 B
Python
from shared.config import DEBUG
|
|
|
|
def log(message):
|
|
"""Log a message to the console if DEBUG is enabled."""
|
|
if DEBUG:
|
|
print(f"\n{message}") |