Skip to content

Commit 8d8a030

Browse files
committed
log command output at info level
1 parent 1bccc34 commit 8d8a030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/orchestration/drivers_orchestration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def run_command(cmd: str, **kwargs):
205205
stdout=subprocess.PIPE,
206206
**kwargs,
207207
)
208-
LOGGER.debug(proc.stdout)
208+
LOGGER.info(proc.stdout)
209209
except subprocess.CalledProcessError as e:
210210
LOGGER.error(e.output)
211211
LOGGER.error(str(e))

0 commit comments

Comments
 (0)