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

41 lines
783 B
PHP
Raw Normal View History

<?php
namespace Symfony\Foundation;
/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* LoggerInterface.
*
* @package Symfony
* @subpackage Foundation
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
interface LoggerInterface
{
public function log($message, $priority);
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);
}