Neos\Flow\Reflection\ReflectionService::log PHP Метод

log() защищенный Метод

Writes the given message along with the additional information into the log.
protected log ( string $message, integer $severity = LOG_INFO, mixed $additionalData = null ) : void
$message string The message to log
$severity integer An integer value, one of the LOG_* constants
$additionalData mixed A variable containing more information about the event to be logged
Результат void
    protected function log($message, $severity = LOG_INFO, $additionalData = null)
    {
        if (is_object($this->systemLogger)) {
            $this->systemLogger->log($message, $severity, $additionalData);
        }
    }
ReflectionService