equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 /* |
|
4 * This file is part of the Symfony package. |
|
5 * |
|
6 * (c) Fabien Potencier <fabien@symfony.com> |
|
7 * |
|
8 * For the full copyright and license information, please view the LICENSE |
|
9 * file that was distributed with this source code. |
|
10 */ |
|
11 |
|
12 namespace Symfony\Component\HttpKernel\Log; |
|
13 |
|
14 /** |
|
15 * LoggerInterface. |
|
16 * |
|
17 * @author Fabien Potencier <fabien@symfony.com> |
|
18 * |
|
19 * @api |
|
20 */ |
|
21 interface LoggerInterface |
|
22 { |
|
23 /** |
|
24 * @api |
|
25 */ |
|
26 function emerg($message, array $context = array()); |
|
27 |
|
28 /** |
|
29 * @api |
|
30 */ |
|
31 function alert($message, array $context = array()); |
|
32 |
|
33 /** |
|
34 * @api |
|
35 */ |
|
36 function crit($message, array $context = array()); |
|
37 |
|
38 /** |
|
39 * @api |
|
40 */ |
|
41 function err($message, array $context = array()); |
|
42 |
|
43 /** |
|
44 * @api |
|
45 */ |
|
46 function warn($message, array $context = array()); |
|
47 |
|
48 /** |
|
49 * @api |
|
50 */ |
|
51 function notice($message, array $context = array()); |
|
52 |
|
53 /** |
|
54 * @api |
|
55 */ |
|
56 function info($message, array $context = array()); |
|
57 |
|
58 /** |
|
59 * @api |
|
60 */ |
|
61 function debug($message, array $context = array()); |
|
62 } |