summaryrefslogtreecommitdiffstats
path: root/src/Monolog/Handler/AbstractProcessingHandler.php
diff options
context:
space:
mode:
authorChristophe Coevoet <stof@notk.org>2011-06-01 00:10:38 +0200
committerChristophe Coevoet <stof@notk.org>2011-06-01 00:10:38 +0200
commitc1675c59d8dbf50e16fa776917030eb03efa6206 (patch)
tree543030f90425adaf723e4433ef2aba203759c79e /src/Monolog/Handler/AbstractProcessingHandler.php
parenta8d4fc4a34c6abc9928735d56aa5653b5d0834d7 (diff)
downloadmonolog-c1675c59d8dbf50e16fa776917030eb03efa6206.zip
monolog-c1675c59d8dbf50e16fa776917030eb03efa6206.tar.gz
monolog-c1675c59d8dbf50e16fa776917030eb03efa6206.tar.bz2
Added the support of a logging context
Diffstat (limited to 'src/Monolog/Handler/AbstractProcessingHandler.php')
-rw-r--r--src/Monolog/Handler/AbstractProcessingHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Monolog/Handler/AbstractProcessingHandler.php b/src/Monolog/Handler/AbstractProcessingHandler.php
index d334448..7f0d6dc 100644
--- a/src/Monolog/Handler/AbstractProcessingHandler.php
+++ b/src/Monolog/Handler/AbstractProcessingHandler.php
@@ -36,7 +36,7 @@ abstract class AbstractProcessingHandler extends AbstractHandler
$record = $this->processRecord($record);
- $record['message'] = $this->getFormatter()->format($record);
+ $record['formatted'] = $this->getFormatter()->format($record);
$this->write($record);