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