# File lib/ruote/evt/tracker.rb, line 116
    def does_match? (msg, conditions)

      conditions.each do |k, v|
        val = msg[k]
        return false unless val && val.match(v)
      end

      true
    end