This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel/Log/NullLogger.php

65 lines
1.2 KiB
PHP
Raw Normal View History

2011-05-31 06:59:58 +01:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpKernel\Log;
use Symfony\Component\HttpKernel\Log\LoggerInterface;
/**
* NullLogger.
*
* @author Fabien Potencier <fabien@symfony.com>
2011-07-20 09:14:31 +01:00
*
* @api
2011-05-31 06:59:58 +01:00
*/
class NullLogger implements LoggerInterface
{
2011-07-20 09:14:31 +01:00
/**
* @api
*/
public function emerg($message, array $context = array()) {}
2011-05-31 06:59:58 +01:00
2011-07-20 09:14:31 +01:00
/**
* @api
*/
public function alert($message, array $context = array()) {}
2011-05-31 06:59:58 +01:00
2011-07-20 09:14:31 +01:00
/**
* @api
*/
public function crit($message, array $context = array()) {}
2011-05-31 06:59:58 +01:00
2011-07-20 09:14:31 +01:00
/**
* @api
*/
public function err($message, array $context = array()) {}
2011-05-31 06:59:58 +01:00
2011-07-20 09:14:31 +01:00
/**
* @api
*/
public function warn($message, array $context = array()) {}
2011-05-31 06:59:58 +01:00
2011-07-20 09:14:31 +01:00
/**
* @api
*/
public function notice($message, array $context = array()) {}
2011-05-31 06:59:58 +01:00
2011-07-20 09:14:31 +01:00
/**
* @api
*/
public function info($message, array $context = array()) {}
2011-05-31 06:59:58 +01:00
2011-07-20 09:14:31 +01:00
/**
* @api
*/
public function debug($message, array $context = array()) {}
2011-05-31 06:59:58 +01:00
}