# File httpd/lib/symbiosis/apache_logger.rb, line 10
    def initialize(prefix, cache_time=10, clock=nil)
      @prefix = prefix
      @cache_time = cache_time
      @cache = {}
      @clock = clock
      @clock ||= Proc.new { Time.now }
    end