Skip to content

Commit

Permalink
Removing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 6, 2009
1 parent 84c8cc3 commit 6b2f7f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cake/libs/cake_log.php
Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 6b2f7f6

Please sign in to comment.