Files
nfoguard/core/logging.py
T
2025-09-08 15:04:20 -04:00

7 lines
256 B
Python

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