From 7c68117c035316b764c91a96719d5187fe1920e4 Mon Sep 17 00:00:00 2001 From: Rafael Dohms Date: Tue, 11 Dec 2012 10:10:15 +0100 Subject: [PATCH] Updating Monolog Config Updating a misleading `syslog` entry that actually used a stream and added a true `syslogHandler` example so its clearer to people using it. --- cookbook/logging/monolog.rst | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/cookbook/logging/monolog.rst b/cookbook/logging/monolog.rst index f9f92e3f25d..e44a1d43c6e 100644 --- a/cookbook/logging/monolog.rst +++ b/cookbook/logging/monolog.rst @@ -54,7 +54,7 @@ allows you to log the messages in several ways easily. monolog: handlers: - syslog: + applog: type: stream path: /var/log/symfony.log level: error @@ -65,7 +65,9 @@ allows you to log the messages in several ways easily. file: type: stream level: debug - + syslog: + type: syslog + level: error .. code-block:: xml +