Fix exception message
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 28 Jan 2011 17:34:43 +0000 (10:34 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 28 Jan 2011 20:14:47 +0000 (13:14 -0700)
framework/Log/lib/Horde/Log/Handler/Stream.php

index faae11f..ebd84c1 100644 (file)
@@ -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;