Skip to content

Commit b01a13c

Browse files
authored
Merge pull request #18 from keboola/ujovlado-remove-prefix
Remove unnecessary prefix when logging to stdout
2 parents 46b6ba6 + e22d010 commit b01a13c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/subprocess_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def read_stderr():
3838
if process.stdout:
3939
for line in iter(process.stdout.readline, ""):
4040
stdout_lines.append(line.strip())
41-
logging.info("Command output: %s", line.strip())
41+
logging.info(line.strip())
4242
process.stdout.close()
4343
stderr_thread.join()
4444

0 commit comments

Comments
 (0)