# File lib/ruote/log/default_history.rb, line 106
    def by_date(date)

      d = Time.parse(date.to_s).utc.strftime('%Y-%m-%d')

      @history.select { |m| Time.parse(m['seen_at']).strftime('%Y-%m-%d') == d }
    end