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