Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
Css
PreProcessor
ErrorHandler.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Css\PreProcessor
;
7
11
class
ErrorHandler
implements
ErrorHandlerInterface
12
{
16
protected
$logger
;
17
21
public
function
__construct
(\Psr\Log\LoggerInterface
$logger
)
22
{
23
$this->logger =
$logger
;
24
}
25
29
public
function
processException
(\Exception $e)
30
{
31
$this->logger->critical($e);
32
}
33
}
Magento\Framework\Css\PreProcessor\ErrorHandler\__construct
__construct(\Psr\Log\LoggerInterface $logger)
Definition:
ErrorHandler.php:21
Magento\Framework\Css\PreProcessor
Magento\Framework\Css\PreProcessor\ErrorHandler\processException
processException(\Exception $e)
Definition:
ErrorHandler.php:29
Magento\Framework\Css\PreProcessor\ErrorHandler
Definition:
ErrorHandler.php:11
Magento\Framework\Css\PreProcessor\ErrorHandlerInterface
Definition:
ErrorHandlerInterface.php:11
Magento\Framework\Css\PreProcessor\ErrorHandler\$logger
$logger
Definition:
ErrorHandler.php:16