[AIRFLOW-5425] Use logging not printing in LoggingCommandExecutor (#6032)

This will show proper message in log (yellow color) which will be harder to miss.
This commit is contained in:
Tomek 2019-09-08 10:36:50 +02:00 коммит произвёл Jarek Potiuk
Родитель 168a45a762
Коммит 0ffc14c30a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,7 @@ class LoggingCommandExecutor(LoggingMixin):
self.log.info("Stdout: {}".format(output))
self.log.info("Stderr: {}".format(err))
if retcode:
print("Error when executing '{}'".format(" ".join(cmd)))
self.log.warning("Error when executing %s", " ".join(cmd))
return retcode
def check_output(self, cmd):