class ProcessExecuter::Runner

def log_result(result)

Other tags:
    Api: - private

Returns:
  • (void) -

Parameters:
  • result (ProcessExecuter::Result) -- the result of the command including
def log_result(result)
  result.options.logger.info { "#{result.command} exited with status #{result}" }
  result.options.logger.debug { "stdout:\n#{result.stdout.inspect}\nstderr:\n#{result.stderr.inspect}" }
end