Documentation

WildfireFormatter extends NormalizerFormatter
in package

Serializes a log message according to Wildfire's header requirements

Tags
author

Eric Clemmons (@ericclemmons) eric@uxdriven.com

author

Christophe Coevoet stof@notk.org

author

Kirill chEbba Chebunin iam@chebba.org

phpstan-import-type

Level from \Monolog\Logger

Table of Contents

SIMPLE_DATE  = "Y-m-d\TH:i:sP"
$dateFormat  : string
$maxNormalizeDepth  : int
$maxNormalizeItemCount  : int
$jsonEncodeOptions  : int
$logLevels  : mixed
Translates Monolog log levels to Wildfire levels.
__construct()  : mixed
addJsonEncodeOption()  : self
format()  : string
Formats a log record.
formatBatch()  : mixed
Formats a set of log records.
getDateFormat()  : string
getMaxNormalizeDepth()  : int
The maximum number of normalization levels to go through
getMaxNormalizeItemCount()  : int
The maximum number of items to normalize per level
removeJsonEncodeOption()  : self
setDateFormat()  : self
setJsonPrettyPrint()  : self
Enables `json_encode` pretty print.
setMaxNormalizeDepth()  : self
setMaxNormalizeItemCount()  : self
formatDate()  : string
normalize()  : null|scalar|array<string|int, array|scalar|null>|object
normalizeException()  : array<string|int, mixed>
toJson()  : string
Return the JSON representation of a value

Constants

Properties

$jsonEncodeOptions

private int $jsonEncodeOptions = MonologUtils::DEFAULT_JSON_FLAGS

$logLevels

Translates Monolog log levels to Wildfire levels.

private mixed $logLevels = [MonologLogger::DEBUG => 'LOG', MonologLogger::INFO => 'INFO', MonologLogger::NOTICE => 'INFO', MonologLogger::WARNING => 'WARN', MonologLogger::ERROR => 'ERROR', MonologLogger::CRITICAL => 'ERROR', MonologLogger::ALERT => 'ERROR', MonologLogger::EMERGENCY => 'ERROR']

Methods

__construct()

public __construct([string|null $dateFormat = null ]) : mixed
Parameters
$dateFormat : string|null = null

The format of the timestamp: one supported by DateTime::format

Return values
mixed

addJsonEncodeOption()

public addJsonEncodeOption(int $option) : self
Parameters
$option : int
Return values
self

format()

Formats a log record.

public format(array<string|int, mixed> $record) : string
Parameters
$record : array<string|int, mixed>
Return values
string

formatBatch()

Formats a set of log records.

public formatBatch(array<string|int, mixed> $records) : mixed
Parameters
$records : array<string|int, mixed>

A set of records to format

Tags
phpstan-return

never

Return values
mixed

The formatted set of records

getMaxNormalizeDepth()

The maximum number of normalization levels to go through

public getMaxNormalizeDepth() : int
Return values
int

getMaxNormalizeItemCount()

The maximum number of items to normalize per level

public getMaxNormalizeItemCount() : int
Return values
int

removeJsonEncodeOption()

public removeJsonEncodeOption(int $option) : self
Parameters
$option : int
Return values
self

setDateFormat()

public setDateFormat(string $dateFormat) : self
Parameters
$dateFormat : string
Return values
self

setJsonPrettyPrint()

Enables `json_encode` pretty print.

public setJsonPrettyPrint(bool $enable) : self
Parameters
$enable : bool
Return values
self

setMaxNormalizeDepth()

public setMaxNormalizeDepth(int $maxNormalizeDepth) : self
Parameters
$maxNormalizeDepth : int
Return values
self

setMaxNormalizeItemCount()

public setMaxNormalizeItemCount(int $maxNormalizeItemCount) : self
Parameters
$maxNormalizeItemCount : int
Return values
self

formatDate()

protected formatDate(DateTimeInterface $date) : string
Parameters
$date : DateTimeInterface
Return values
string

normalize()

protected normalize(mixed $data, int $depth) : null|scalar|array<string|int, array|scalar|null>|object
Parameters
$data : mixed
$depth : int
Return values
null|scalar|array<string|int, array|scalar|null>|object

normalizeException()

protected normalizeException(Throwable $e, int $depth) : array<string|int, mixed>
Parameters
$e : Throwable
$depth : int
Return values
array<string|int, mixed>

toJson()

Return the JSON representation of a value

protected toJson(mixed $data[, bool $ignoreErrors = false ]) : string
Parameters
$data : mixed
$ignoreErrors : bool = false
Tags
throws
RuntimeException

if encoding fails and errors are not ignored

Return values
string

if encoding fails and ignoreErrors is true 'null' is returned

Search results