diff --git a/ccw/src/core/services/pending-question-service.ts b/ccw/src/core/services/pending-question-service.ts index 86e21f05..e077bc08 100644 --- a/ccw/src/core/services/pending-question-service.ts +++ b/ccw/src/core/services/pending-question-service.ts @@ -77,7 +77,10 @@ function initialize(): void { pendingQuestions.set(sq.id, pendingQ); } - console.log(`[PendingQuestionService] Loaded ${pendingQuestions.size} pending questions from storage`); + // Only log when there are actual pending questions (silent when 0) + if (pendingQuestions.size > 0) { + console.log(`[PendingQuestionService] Loaded ${pendingQuestions.size} pending questions from storage`); + } } initialized = true;