# File lib/ruote/log/wait_logger.rb, line 75
    def initialize(context)

      @context = context

      @seen = []
      @log = []
      @waiting = []

      @count = -1
      @color = 33
      @noisy = false

      @log_max = context['wait_logger_max'] || 77
      @timeout = context['wait_logger_timeout'] || 60 # in seconds

      @check_mutex = Mutex.new
    end