1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/obsolete/web_client/system/libraries/drivers/Log/Syslog.php

34 lines
861 B
PHP

<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Log API driver.
*
* @package Kohana_Log
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class Log_Syslog_Driver extends Log_Driver {
protected $syslog_levels = array('error' => LOG_ERR,
'alert' => LOG_WARNING,
'info' => LOG_INFO,
'debug' => LOG_DEBUG);
public function save(array $messages)
{
// Open the connection to syslog
openlog($this->config['ident'], LOG_CONS, LOG_USER);
do
{
// Load the next message
list ($date, $type, $text) = array_shift($messages);
syslog($this->syslog_levels[$type], $text);
}
while ( ! empty($messages));
// Close connection to syslog
closelog();
}
}