[MN-01] Missing Logging in KnowledgeCoordinator #1
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Full Detail: The
KnowledgeCoordinator.csservice currently relies onConsole.WriteLinefor progress and error reporting (e.g., lines 45, 66). This is insufficient for production monitoring and debugging.Action:
ILogger<KnowledgeCoordinator>via constructor.Console.WriteLinewith structured logging.tenantIdand operation type (e.g., 'FullPageGraph', 'SummaryAndQuiz') in the log context.