diff options
-rw-r--r-- | lib/shell_utils.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/shell_utils.rb b/lib/shell_utils.rb index b426e44..b22e791 100644 --- a/lib/shell_utils.rb +++ b/lib/shell_utils.rb @@ -46,14 +46,14 @@ module ShellUtils ] end - logger.debug("#{self.class}: Running command #{command.join(' ')}") + logger.info("#{self.class}: Running command #{command.join(' ')}") Open3.popen2e(*command) do |_stdin, stdout_and_stderr, wait_thr| logger.info("#{self.class}: commmand running, pid #{wait_thr.pid}") output = [] stdout_and_stderr.each_line do |line| - logger.debug(self.class) { line.chomp } + logger.info(self.class) { line.chomp } output << line end |