# File lib/ruote/log/storage_history.rb, line 39
    def initialize (context, options={})

      @context = context
      @options = options

      if @context.worker

        # only care about logging if there is a worker present

        @context.storage.add_type('history')
        @context.worker.subscribe(:all, self)
      end
    end