File tree Expand file tree Collapse file tree
inference/core/workflows/execution_engine/v1/executor Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ def execute_steps(
107107 workflow_execution_id = execution_id .get ()
108108 else :
109109 workflow_execution_id = None
110- logger .info (f"Executing steps: { next_steps } ." )
110+ logger .debug (f"Executing steps: { next_steps } ." )
111111 steps_functions = [
112112 partial (
113113 safe_execute_step ,
@@ -141,7 +141,7 @@ def safe_execute_step(
141141 if profiler is None :
142142 profiler = NullWorkflowsProfiler .init ()
143143 try :
144- logger .info (
144+ logger .debug (
145145 f"started execution of: { step_selector } - { datetime .now ().isoformat ()} "
146146 )
147147 run_step (
@@ -150,7 +150,7 @@ def safe_execute_step(
150150 execution_data_manager = execution_data_manager ,
151151 profiler = profiler ,
152152 )
153- logger .info (
153+ logger .debug (
154154 f"finished execution of: { step_selector } - { datetime .now ().isoformat ()} "
155155 )
156156 except (ModelManagerLockAcquisitionError , InferenceModelNotFound ) as error :
You can’t perform that action at this time.
0 commit comments