Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Log / LoggerInterface.php
blobdc849ad41ed9cab0c6d24a87132feb875f6fece4
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Log;
12 use Traversable;
14 interface LoggerInterface
16 /**
17 * @param string $message
18 * @param array|Traversable $extra
19 * @return LoggerInterface
21 public function emerg($message, $extra = array());
23 /**
24 * @param string $message
25 * @param array|Traversable $extra
26 * @return LoggerInterface
28 public function alert($message, $extra = array());
30 /**
31 * @param string $message
32 * @param array|Traversable $extra
33 * @return LoggerInterface
35 public function crit($message, $extra = array());
37 /**
38 * @param string $message
39 * @param array|Traversable $extra
40 * @return LoggerInterface
42 public function err($message, $extra = array());
44 /**
45 * @param string $message
46 * @param array|Traversable $extra
47 * @return LoggerInterface
49 public function warn($message, $extra = array());
51 /**
52 * @param string $message
53 * @param array|Traversable $extra
54 * @return LoggerInterface
56 public function notice($message, $extra = array());
58 /**
59 * @param string $message
60 * @param array|Traversable $extra
61 * @return LoggerInterface
63 public function info($message, $extra = array());
65 /**
66 * @param string $message
67 * @param array|Traversable $extra
68 * @return LoggerInterface
70 public function debug($message, $extra = array());