diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-14 11:21:10 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-14 11:21:10 -0400 |
commit | 23e5775f348786f8911f083fffab1e3566a28831 (patch) | |
tree | a06648d47c0f1213296ebed3529db8f356231a18 /lib/log.lib.php | |
parent | f03fe159188c0df471f447c01e711b7f51253d34 (diff) | |
download | ampache-23e5775f348786f8911f083fffab1e3566a28831.tar.gz ampache-23e5775f348786f8911f083fffab1e3566a28831.tar.bz2 ampache-23e5775f348786f8911f083fffab1e3566a28831.zip |
Add another undocumented debug level
Diffstat (limited to 'lib/log.lib.php')
-rw-r--r-- | lib/log.lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/log.lib.php b/lib/log.lib.php index 38628664..f5ff8712 100644 --- a/lib/log.lib.php +++ b/lib/log.lib.php @@ -110,7 +110,7 @@ function ampache_error_handler($errno, $errstr, $errfile, $errline) { foreach($ignores as $ignore) { if (strpos($errstr, $ignore) !== false) { $error_name = 'Ignored ' . $error_name; - $level = 6; + $level = 7; } } |