blob: 5f99d3f8f4ea4a335f9e288b88a89d34b4cb26b7 [file] [log] [blame]
=====================
LoggerAppenderConsole
=====================
``LoggerAppenderConsole`` writes logging events to the ``php://stdout`` or the
``php://stderr`` stream, the former being the default target.
Layout
------
This appender requires a layout. If no layout is specified in configuration,
``LoggerLayoutSimple`` will be used by default.
Parameters
----------
The following parameters are available:
+-----------+--------+----------+---------+-------------------------------------------------------+
| Parameter | Type | Required | Default | Description |
+===========+========+==========+=========+=======================================================+
| target | string | No | stdout | The stream to write to; either "stdout" or "stderr". |
+-----------+--------+----------+---------+-------------------------------------------------------+
Examples
--------
This example shows how to configure ``LoggerAppenderConsole``.
.. container:: tabs
.. rubric:: XML format
.. code-block:: xml
<configuration xmlns="http://logging.apache.org/log4php/">
<appender name="default" class="LoggerAppenderConsole">
<layout class="LoggerLayoutSimple" />
</appender>
<root>
<appender_ref ref="default" />
</root>
</configuration>
.. rubric:: PHP format
.. code-block:: php
array(
'appenders' => array(
'default' => array(
'class' => 'LoggerAppenderConsole',
'layout' => array(
'class' => 'LoggerLayoutSimple',
),
),
),
'rootLogger' => array(
'appenders' => array('default'),
),
);
.. Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.