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
Logger
Handler
Syslog.php
Go to the documentation of this file.
1
<?php
6
declare(strict_types=1);
7
8
namespace
Magento\Framework\Logger\Handler
;
9
10
use Monolog\Handler\SyslogHandler;
11
use Monolog\Logger;
12
16
class
Syslog
extends
SyslogHandler
17
{
18
private
const
FACILITY = LOG_USER;
19
private
const
LEVEL = Logger::DEBUG;
20
24
public
function
__construct
(
string
$ident)
25
{
26
parent::__construct($ident, self::FACILITY, self::LEVEL);
27
}
28
}
Magento\Framework\Logger\Handler\Syslog
Definition:
Syslog.php:16
Magento\Framework\Logger\Handler\Syslog\__construct
__construct(string $ident)
Definition:
Syslog.php:24
Magento\Framework\Logger\Handler
Definition:
Base.php:7