module Cucumber

def logger

def logger
  return @log if @log
  @log = Logger.new($stdout)
  @log.level = Logger::INFO
  @log
end