1: <?php
2:
3: /**
4: * This file is part of the Tracy (http://tracy.nette.org)
5: * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
6: */
7:
8: namespace Tracy;
9:
10: use Tracy;
11:
12:
13: /**
14: * Logger.
15: */
16: interface ILogger
17: {
18: const DEBUG = 'debug',
19: INFO = 'info',
20: WARNING = 'warning',
21: ERROR = 'error',
22: EXCEPTION = 'exception',
23: CRITICAL = 'critical';
24:
25: function log($value, $priority = self::INFO);
26:
27: }
28: