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/LoggerInterface.php

63 lines
1.1 KiB
PHP
Raw Normal View History

<?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;
/**
* LoggerInterface.
*
* @author Fabien Potencier <fabien@symfony.com>
2011-07-20 09:14:31 +01:00
*
* @api
*/
interface LoggerInterface
{
2011-07-20 09:14:31 +01:00
/**
* @api
*/
function emerg($message, array $context = array());
2011-07-20 09:14:31 +01:00
/**
* @api
*/
function alert($message, array $context = array());
2011-07-20 09:14:31 +01:00
/**
* @api
*/
function crit($message, array $context = array());
2011-07-20 09:14:31 +01:00
/**
* @api
*/
function err($message, array $context = array());
2011-07-20 09:14:31 +01:00
/**
* @api
*/
function warn($message, array $context = array());
2011-07-20 09:14:31 +01:00
/**
* @api
*/
function notice($message, array $context = array());
2011-07-20 09:14:31 +01:00
/**
* @api
*/
function info($message, array $context = array());
2011-07-20 09:14:31 +01:00
/**
* @api
*/
function debug($message, array $context = array());
}