/**
  * @param \LogEntry $entry
  */
 public function __construct(\LogEntry $entry)
 {
     parent::__construct($entry);
     $params = $this->entry->getParameters();
     // serialized topicId or postId can be stored
     foreach ($params as $key => $value) {
         if ($value instanceof UUID) {
             static::$uuids[$value->getAlphadecimal()] = $value;
         }
     }
 }