Chirag0123's picture
v2.0 β€” agent reliability & evaluation layer
a5c1fa0
Raw
History Blame Contribute Delete
302 Bytes
"""Logging utilities for inventory operations."""
def log_operation(operation: str, item_id: str, details: str = "") -> str:
"""Create a log entry for an inventory operation."""
entry = f"[INVENTORY] {operation}: {item_id}"
if details:
entry += f" β€” {details}"
return entry