From 3792269b5e194e8228a4fda8ff080b04bc3fc929 Mon Sep 17 00:00:00 2001 From: Kim <150593189+KimGLee@users.noreply.github.com> Date: Fri, 27 Feb 2026 13:56:39 +0800 Subject: [PATCH] fix(reply): avoid undefined logger in dedupe-state persistence warning --- src/auto-reply/reply/agent-runner.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/auto-reply/reply/agent-runner.ts b/src/auto-reply/reply/agent-runner.ts index ecc08a8a7d5..c80704f4cb9 100644 --- a/src/auto-reply/reply/agent-runner.ts +++ b/src/auto-reply/reply/agent-runner.ts @@ -452,8 +452,8 @@ export async function runReplyAgent(params: { }), }); } catch (error) { - logger.warning( - "Failed to persist messaging-tool dedupe state for session {}: {}", + console.warn( + "Failed to persist messaging-tool dedupe state for session", sessionKey, error, );