[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.I have implemented the requested changes in branch
feat/MN-01-logging-knowledgecoordinator.ILogger<KnowledgeCoordinator>.Console.WriteLinewith structured logging.tenantIdand operation context to log messages.RequestSummaryAndQuizAsync.The solution builds successfully (0 errors).
Branch:
feat/MN-01-logging-knowledgecoordinatorPR can be created here: https://git.archimap.cloud/mjasin/Nexus.Reader/pulls/new/feat/MN-01-logging-knowledgecoordinator