"""Logging utilities for NFOguard""" from datetime import datetime, timezone def _log(level: str, msg: str): """Basic logging function that writes to console""" print(f"[{datetime.now(timezone.utc).isoformat(timespec='seconds')}] {level}: {msg}")