7 lines
256 B
Python
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}") |