32 lines
741 B
PHP
32 lines
741 B
PHP
<?php defined('SYSPATH') or die('No direct script access.');
|
|
/**
|
|
* STDOUT log writer. Writes out messages to STDOUT.
|
|
*
|
|
* @package Kohana
|
|
* @category Logging
|
|
* @author Kohana Team
|
|
* @copyright (c) 2008-2011 Kohana Team
|
|
* @license http://kohanaphp.com/license
|
|
*/
|
|
class Kohana_Log_StdOut extends Kohana_Log_Writer {
|
|
/**
|
|
* Writes each of the messages to STDOUT.
|
|
*
|
|
* $writer->write($messages);
|
|
*
|
|
* @param array messages
|
|
* @return void
|
|
*/
|
|
public function write(array $messages)
|
|
{
|
|
// Set the log line format
|
|
$format = 'time --- type: body';
|
|
|
|
foreach ($messages as $message)
|
|
{
|
|
// Writes out each message
|
|
fwrite(STDOUT, PHP_EOL.strtr($format, $message));
|
|
}
|
|
}
|
|
} // End Kohana_Log_StdOut
|