class ProcessExecuter::Options::RunOptions

def validate_logger

Other tags:
    Api: - private

Returns:
  • (String, nil) - the error message if the value is not valid
def validate_logger
  return if logger.respond_to?(:info) && logger.respond_to?(:debug)
  errors << "logger must respond to #info and #debug but was #{logger.inspect}"
end