Files
Ninluc 2dd664c4b4
Build, push image, and notify Watchtower / build-image (push) Successful in 1m39s
Build, push image, and notify Watchtower / notify (push) Successful in 1m43s
UART & Sensors
2026-07-23 15:50:43 +02:00

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