Class ChromePhp

Summary

Fully Qualified Name: Zend\Log\Writer\ChromePhp
Extends: AbstractWriter

Description

Methods

Name Description Defined By
__construct() Initializes a new instance of this class. ChromePhp
addFilter() Add a filter specific to this writer. AbstractWriter
filterPlugin() Get filter instance AbstractWriter
formatterPlugin() Get formatter instance AbstractWriter
getChromePhp() Gets the ChromePhpInterface instance that is used for logging. ChromePhp
getFilterPluginManager() Get filter plugin manager AbstractWriter
getFormatterPluginManager() Get formatter plugin manager AbstractWriter
setChromePhp() Sets the ChromePhpInterface instance that is used for logging. ChromePhp
setConvertWriteErrorsToExceptions() Set convert write errors to exception flag AbstractWriter
setFilterPluginManager() Set filter plugin manager AbstractWriter
setFormatter() Set a new formatter for this writer AbstractWriter
setFormatterPluginManager() Set formatter plugin manager AbstractWriter
shutdown() Perform shutdown activities such as closing open resources AbstractWriter
write() Log a message to this writer. AbstractWriter

Method Details

__construct()

Initializes a new instance of this class.

Parameter Name Type Description
$instance null|\ChromePhpInterface|array|\Traversable An

Returns:

addFilter()

Add a filter specific to this writer.

Parameter Name Type Description
$filter int|string|\Filter\FilterInterface
$options array|null

Returns: \AbstractWriter

filterPlugin()

Get filter instance

Parameter Name Type Description
$name string
$options array|null

Returns: \Filter\FilterInterface

formatterPlugin()

Get formatter instance

Parameter Name Type Description
$name string
$options array|null

Returns: \Formatter\FormatterInterface

getChromePhp()

Gets the ChromePhpInterface instance that is used for logging.

Returns: \ChromePhpInterface

getFilterPluginManager()

Get filter plugin manager

Returns: \LogFilterPluginManager

getFormatterPluginManager()

Get formatter plugin manager

Returns: \LogFormatterPluginManager

setChromePhp()

Sets the ChromePhpInterface instance that is used for logging.

Parameter Name Type Description
$instance \ChromePhpInterface The

Returns: \ChromePhp

setConvertWriteErrorsToExceptions()

Set convert write errors to exception flag

Parameter Name Type Description
$convertErrors bool

Returns:

setFilterPluginManager()

Set filter plugin manager

Parameter Name Type Description
$plugins string|\LogFilterPluginManager

Returns: self

setFormatter()

Set a new formatter for this writer

Parameter Name Type Description
$formatter string|\Formatter\FormatterInterface
$options array|null

Returns: self

setFormatterPluginManager()

Set formatter plugin manager

Parameter Name Type Description
$plugins string|\LogFormatterPluginManager

Returns: self

shutdown()

Perform shutdown activities such as closing open resources

Returns: void

write()

Log a message to this writer.

Parameter Name Type Description
$event array log

Returns: void

Top