Skip to content

Commit eb7d72c

Browse files
Merge pull request #1620 from roboflow/feat/reduce-logging-in-info-level
Set workflow execution log level to debug
2 parents cd79739 + b848e75 commit eb7d72c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • inference/core/workflows/execution_engine/v1/executor

inference/core/workflows/execution_engine/v1/executor/core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)