From 174503f148fa273ab179901c8b09dbf65e1f0f09 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 28 Jan 2011 10:34:43 -0700 Subject: [PATCH] Fix exception message --- framework/Log/lib/Horde/Log/Handler/Stream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Log/lib/Horde/Log/Handler/Stream.php b/framework/Log/lib/Horde/Log/Handler/Stream.php index faae11f5b..ebd84c190 100644 --- a/framework/Log/lib/Horde/Log/Handler/Stream.php +++ b/framework/Log/lib/Horde/Log/Handler/Stream.php @@ -112,7 +112,7 @@ class Horde_Log_Handler_Stream extends Horde_Log_Handler_Base $line = $this->_formatter->format($event); if (!@fwrite($this->_stream, $line)) { - throw new Horde_Log_Exception(__CLASS__ . 'Unable to write to stream'); + throw new Horde_Log_Exception(__CLASS__ . ': Unable to write to stream'); } return true; -- 2.11.0