class EventLog implements ISink {
      public log: ILogEvent[] = [];
      public handleEvent(event: ILogEvent): void {
        this.log.push(event);
      }