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. \