style(memory): use loguru {} formatting in warning

This commit is contained in:
Re-bin
2026-02-24 11:23:10 +00:00
parent b9eb9d4963
commit d546cbac6e

View File

@@ -129,7 +129,7 @@ class MemoryStore:
if isinstance(args, str):
args = json.loads(args)
if not isinstance(args, dict):
logger.warning("Memory consolidation: unexpected arguments type %s", type(args).__name__)
logger.warning("Memory consolidation: unexpected arguments type {}", type(args).__name__)
return False
if entry := args.get("history_entry"):