12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Logger\Handler;
- use Magento\Framework\Filesystem\DriverInterface;
- use Monolog\Logger;
- /**
- * System stream handler
- */
- class System extends Base
- {
- /**
- * @var string
- */
- protected $fileName = '/var/log/system.log';
- /**
- * @var int
- */
- protected $loggerType = Logger::INFO;
- /**
- * @var Exception
- */
- protected $exceptionHandler;
- /**
- * @param DriverInterface $filesystem
- * @param Exception $exceptionHandler
- * @param string $filePath
- */
- public function __construct(
- DriverInterface $filesystem,
- Exception $exceptionHandler,
- $filePath = null
- ) {
- $this->exceptionHandler = $exceptionHandler;
- parent::__construct($filesystem, $filePath);
- }
- /**
- * Writes formatted record through the handler.
- *
- * @param array $record The record metadata
- * @return void
- */
- public function write(array $record)
- {
- if (isset($record['context']['exception'])) {
- $this->exceptionHandler->handle($record);
- return;
- }
- $record['formatted'] = $this->getFormatter()->format($record);
- parent::write($record);
- }
- }
|