diff --git a/src/ScribeHandler.php b/src/ScribeHandler.php index 7abcd79..fe306bd 100644 --- a/src/ScribeHandler.php +++ b/src/ScribeHandler.php @@ -18,6 +18,7 @@ public function __construct($host, $port) public function handle(array $record) { - $this->scribe->log($record['channel'], $record['message']); + $formatted = $this->getFormatter()->format($record); + $this->scribe->log($record['channel'], $formatted); } }