From 6b2f7f67a6cdd66f246dd76bc2607a1705912d8b Mon Sep 17 00:00:00 2001 From: mark_story Date: Thu, 5 Nov 2009 20:16:25 -0500 Subject: [PATCH] Removing whitespace. --- cake/libs/cake_log.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cake/libs/cake_log.php b/cake/libs/cake_log.php index edaace349e4..6a4dc78101d 100644 --- a/cake/libs/cake_log.php +++ b/cake/libs/cake_log.php @@ -54,9 +54,9 @@ * @subpackage cake.cake.libs */ class CakeLog { - + /** - * An array of connected streams. + * An array of connected streams. * Each stream represents a callable that will be called when write() is called. * * @var array @@ -125,7 +125,7 @@ function _getLogger($loggerName) { } if (!method_exists($loggerName, 'write')) { trigger_error( - sprintf(__('logger class %s does not implement a write method.', true), $loggerName), + sprintf(__('logger class %s does not implement a write method.', true), $loggerName), E_USER_WARNING ); return false; @@ -159,7 +159,7 @@ function remove($streamName) { /** * Add a stream the logger. - * Streams represent destinations for log messages. Each stream can connect to + * Streams represent destinations for log messages. Each stream can connect to * a different resource /interface and capture/write output to that source. * * @param string $key Keyname of config.