Description
In helpers/LoggerPatternParser.php, Line 305, the code makes use of a class called LoggerUserFieldPatternConverter whereas this class is not present anywhere in the archive.
The code fragment looks like -
case 'u':
if($this->i < $this->patternLength) {
$cNext = $this->pattern{$this->i};
if(ord($cNext) >= ord('0') and ord($cNext) <= ord('9'))
}
break;