Bolt\Controller\Async\FilesystemManager::logException PHP Метод

logException() приватный Метод

Log an exception to the system log
private logException ( string $message, Exception $exception ) : boolean
$message string A formatted error message
$exception Exception The exception that has been thrown
Результат boolean Whether the record has been processed
    private function logException($message, $exception)
    {
        return $this->app['logger.system']->error($message . ': ' . $exception->getMessage(), ['event' => 'exception', 'exception' => $exception]);
    }