# File lib/scrubyt/logging.rb, line 113
    def setup_logger_with_faux_output_stream!(*logger_args)
      @stream = FauxOutputStream.new
      logger = Scrubyt::Logger.new(*logger_args)
      logger.output_stream = @stream
      Scrubyt.logger = logger
    end