From 09376fd738523e6567dd9ebb347a686bb3a3d109 Mon Sep 17 00:00:00 2001 From: Simo Lin Date: Fri, 5 Dec 2025 12:50:50 -0800 Subject: [PATCH] [model-gateway] fix logs in smg workflow (#14513) --- sgl-model-gateway/src/core/workflow/state.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sgl-model-gateway/src/core/workflow/state.rs b/sgl-model-gateway/src/core/workflow/state.rs index 2811903b1..1c0530e0b 100644 --- a/sgl-model-gateway/src/core/workflow/state.rs +++ b/sgl-model-gateway/src/core/workflow/state.rs @@ -23,13 +23,13 @@ impl WorkflowStateStore { /// Save workflow state /// - /// # Warning + /// # Note /// - /// This emits a warning if the workflow context contains unserializable data, + /// This emits a debug log if the workflow context contains unserializable data, /// which would be lost if state persistence is later implemented. pub fn save(&self, state: WorkflowState) -> WorkflowResult<()> { if state.context.has_unserializable_data() { - tracing::warn!( + tracing::debug!( instance_id = %state.instance_id, data_count = state.context.data_len(), "Saving workflow state with {} unserializable context entries. \