summaryrefslogtreecommitdiff
path: root/classes/logger.php
blob: 6370e142569cad592dc4da5704c3c4300d25e062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
class Logger {

	protected $errornames = array(
		2			=> 'E_WARNING',
		8			=> 'E_NOTICE',
		256		=> 'E_USER_ERROR',
		512		=> 'E_USER_WARNING',
		1024		=> 'E_USER_NOTICE',
		2048		=> 'E_STRICT',
		4096		=> 'E_RECOVERABLE_ERROR',
		8192		=> 'E_DEPRECATED',
		16384		=> 'E_USER_DEPRECATED',
		32767		=> 'E_ALL');

	function log_error($errno, $errstr, $file, $line, $context) {
		return false;
	}

	function log($string) {
		return false;
	}
}
?>