Bitrix API

EventLogger extends Logger

Table of Contents

Methods

__construct()  : mixed
create()  : static|null
Creates a logger by its ID based on .settings.php.
log()  : void
setFormatter()  : $this
Sets a formatter for the logger.
setLevel()  : $this
Sets the maximun verbose level of the logger.

Methods

__construct()

public __construct([string|null $module = null ][, string|null $auditType = null ][, callable|null $callback = null ]) : mixed
Parameters
$module : string|null = null
$auditType : string|null = null
$callback : callable|null = null

Should return an array with fields for CEventLog::Add(). function (array $context, string $message): array

create()

Creates a logger by its ID based on .settings.php.

public static create(string $id[, array<string|int, mixed> $params = [] ]) : static|null

'loggers' => [ 'logger.id' => [ 'className' => 'name of the logger class', 'constructorParams' => [] OR closure, OR 'constructor' => function (...$param)}, OPTIONAL 'level' => 'verbose level', 'formatter' => 'id of formatter in service locator', ] ]

Parameters
$id : string

A logger ID.

$params : array<string|int, mixed> = []

An optional params to be passed to a closure in settings.

Return values
static|null

log()

public log(mixed $level, string|Stringable $message[, array<string|int, mixed> $context = [] ]) : void
Parameters
$level : mixed
$message : string|Stringable
$context : array<string|int, mixed> = []
Tags
inheritdoc

setLevel()

Sets the maximun verbose level of the logger.

public setLevel(string $level) : $this
Parameters
$level : string

One of LogLevel constants.

Return values
$this

        
On this page

Search results