This is not very useful and simply fills the log with garbage. If a user needs to have the data in log he can do so from the task.
Signed-off-by: Jan Tluka jtluka@redhat.com --- lnst/Common/ShellProcess.py | 1 - 1 file changed, 1 deletion(-)
diff --git a/lnst/Common/ShellProcess.py b/lnst/Common/ShellProcess.py index 56e2339..a4928ed 100644 --- a/lnst/Common/ShellProcess.py +++ b/lnst/Common/ShellProcess.py @@ -230,7 +230,6 @@ class ShellProcess: return data if r and (r[0][1] & select.POLLIN): new_data = os.read(fd, 1024) - logging.log(self.logging_level, "data:\n" + new_data.rstrip()) if not new_data: return data data += new_data