Files
vanessa_bot_vanity/app/modules/logger.py
Marco Gallegos 36b7154c6e first commit
2025-12-22 22:47:33 -06:00

13 lines
433 B
Python

import logging
from modules.database import SessionUsersAlma
def log_request(telegram_id, username, command, message):
if not SessionUsersAlma:
# DB not configured, just log to console/file
logging.info(f"REQ: {command} from {username} ({telegram_id}): {message}")
return
# DB logic removed as models are not available
logging.info(f"REQ: {command} from {username} ({telegram_id}): {message}")