mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
242
lib/symfony/log/sfLogger.class.php
Executable file
242
lib/symfony/log/sfLogger.class.php
Executable file
@ -0,0 +1,242 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the symfony package.
|
||||
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
define('SF_LOG_EMERG', 0); // System is unusable
|
||||
define('SF_LOG_ALERT', 1); // Immediate action required
|
||||
define('SF_LOG_CRIT', 2); // Critical conditions
|
||||
define('SF_LOG_ERR', 3); // Error conditions
|
||||
define('SF_LOG_WARNING', 4); // Warning conditions
|
||||
define('SF_LOG_NOTICE', 5); // Normal but significant
|
||||
define('SF_LOG_INFO', 6); // Informational
|
||||
define('SF_LOG_DEBUG', 7); // Debug-level messages
|
||||
|
||||
/**
|
||||
* sfLogger manages all logging in symfony projects.
|
||||
*
|
||||
* sfLogger can be configuration via the logging.yml configuration file.
|
||||
* Loggers can also be registered directly in the logging.yml configuration file.
|
||||
*
|
||||
* This level list is ordered by highest priority (SF_LOG_EMERG) to lowest priority (SF_LOG_DEBUG):
|
||||
* - EMERG: System is unusable
|
||||
* - ALERT: Immediate action required
|
||||
* - CRIT: Critical conditions
|
||||
* - ERR: Error conditions
|
||||
* - WARNING: Warning conditions
|
||||
* - NOTICE: Normal but significant
|
||||
* - INFO: Informational
|
||||
* - DEBUG: Debug-level messages
|
||||
*
|
||||
* @package symfony
|
||||
* @subpackage log
|
||||
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
||||
* @version SVN: $Id: sfLogger.class.php 3329 2007-01-23 08:29:34Z fabien $
|
||||
*/
|
||||
class sfLogger
|
||||
{
|
||||
protected
|
||||
$loggers = array(),
|
||||
$level = SF_LOG_EMERG,
|
||||
$levels = array(
|
||||
SF_LOG_EMERG => 'emerg',
|
||||
SF_LOG_ALERT => 'alert',
|
||||
SF_LOG_CRIT => 'crit',
|
||||
SF_LOG_ERR => 'err',
|
||||
SF_LOG_WARNING => 'warning',
|
||||
SF_LOG_NOTICE => 'notice',
|
||||
SF_LOG_INFO => 'info',
|
||||
SF_LOG_DEBUG => 'debug',
|
||||
);
|
||||
|
||||
protected static
|
||||
$logger = null;
|
||||
|
||||
/**
|
||||
* Returns the sfLogger instance.
|
||||
*
|
||||
* @return object the sfLogger instance
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
if (!sfLogger::$logger)
|
||||
{
|
||||
// the class exists
|
||||
$class = __CLASS__;
|
||||
sfLogger::$logger = new $class();
|
||||
sfLogger::$logger->initialize();
|
||||
}
|
||||
|
||||
return sfLogger::$logger;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initializes the logger.
|
||||
*/
|
||||
public function initialize()
|
||||
{
|
||||
$this->loggers = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the log level for the current logger instance.
|
||||
*
|
||||
* @return string Log level
|
||||
*/
|
||||
public function getLogLevel()
|
||||
{
|
||||
return $this->level;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets a log level for the current logger instance.
|
||||
*
|
||||
* @param string Log level
|
||||
*/
|
||||
public function setLogLevel($level)
|
||||
{
|
||||
$this->level = $level;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves current loggers.
|
||||
*
|
||||
* @return array List of loggers
|
||||
*/
|
||||
public function getLoggers()
|
||||
{
|
||||
return $this->loggers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a logger.
|
||||
*
|
||||
* @param string Logger name
|
||||
*/
|
||||
public function registerLogger($logger)
|
||||
{
|
||||
$this->loggers[] = $logger;
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message.
|
||||
*
|
||||
* @param string Message
|
||||
* @param string Message priority
|
||||
*/
|
||||
public function log($message, $priority = SF_LOG_INFO)
|
||||
{
|
||||
if ($this->level < $priority)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ($this->loggers as $logger)
|
||||
{
|
||||
$logger->log((string) $message, $priority, $this->levels[$priority]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets an emerg message.
|
||||
*
|
||||
* @param string Message
|
||||
*/
|
||||
public function emerg($message)
|
||||
{
|
||||
$this->log($message, SF_LOG_EMERG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets an alert message.
|
||||
*
|
||||
* @param string Message
|
||||
*/
|
||||
public function alert($message)
|
||||
{
|
||||
$this->log($message, SF_LOG_ALERT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets a critical message.
|
||||
*
|
||||
* @param string Message
|
||||
*/
|
||||
public function crit($message)
|
||||
{
|
||||
$this->log($message, SF_LOG_CRIT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets an error message.
|
||||
*
|
||||
* @param string Message
|
||||
*/
|
||||
public function err($message)
|
||||
{
|
||||
$this->log($message, SF_LOG_ERR);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets a warning message.
|
||||
*
|
||||
* @param string Message
|
||||
*/
|
||||
public function warning($message)
|
||||
{
|
||||
$this->log($message, SF_LOG_WARNING);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets a notice message.
|
||||
*
|
||||
* @param string Message
|
||||
*/
|
||||
public function notice($message)
|
||||
{
|
||||
$this->log($message, SF_LOG_NOTICE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets an info message.
|
||||
*
|
||||
* @param string Message
|
||||
*/
|
||||
public function info($message)
|
||||
{
|
||||
$this->log($message, SF_LOG_INFO);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets a debug message.
|
||||
*
|
||||
* @param string Message
|
||||
*/
|
||||
public function debug($message)
|
||||
{
|
||||
$this->log($message, SF_LOG_DEBUG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Executes the shutdown procedure.
|
||||
*
|
||||
* Cleans up the current logger instance.
|
||||
*/
|
||||
public function shutdown()
|
||||
{
|
||||
foreach ($this->loggers as $logger)
|
||||
{
|
||||
if (method_exists($logger, 'shutdown'))
|
||||
{
|
||||
$logger->shutdown();
|
||||
}
|
||||
}
|
||||
|
||||
$this->loggers = array();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user