]> git.wh0rd.org - tt-rss.git/blame - classes/logger.php
do not try to load plugins which aren't directories
[tt-rss.git] / classes / logger.php
CommitLineData
889a5f9f
AD
1<?php
2class Logger {
3
4e53956a
AD
4 public static $errornames = array(
5 1 => 'E_ERROR',
889a5f9f
AD
6 2 => 'E_WARNING',
7 8 => 'E_NOTICE',
8 256 => 'E_USER_ERROR',
9 512 => 'E_USER_WARNING',
10 1024 => 'E_USER_NOTICE',
11 2048 => 'E_STRICT',
12 4096 => 'E_RECOVERABLE_ERROR',
13 8192 => 'E_DEPRECATED',
14 16384 => 'E_USER_DEPRECATED',
15 32767 => 'E_ALL');
16
17 function log_error($errno, $errstr, $file, $line, $context) {
18 return false;
19 }
20
21 function log($string) {
22 return false;
23 }
24}
25?>