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

39 lines
776 B
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>
*/
class NullLogger implements LoggerInterface
{
public function emerg($message) {}
public function alert($message) {}
public function crit($message) {}
public function err($message) {}
public function warn($message) {}
public function notice($message) {}
public function info($message) {}
public function debug($message) {}
}