mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
fix: convert php errors to exceptions when in debug mode (#4176)
This commit is contained in:
parent
1a8d0fb8ab
commit
9982bfce1f
@ -25,8 +25,10 @@ set_error_handler(function ($code, $message, $file, $line) {
|
|||||||
// Deprecation messages and other masked errors are typically ignored here
|
// Deprecation messages and other masked errors are typically ignored here
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// In the future, uncomment this:
|
if (Debug::isEnabled()) {
|
||||||
//throw new \ErrorException($message, 0, $code, $file, $line);
|
// This might be annoying, but it's for the greater good
|
||||||
|
throw new \ErrorException($message, 0, $code, $file, $line);
|
||||||
|
}
|
||||||
$text = sprintf(
|
$text = sprintf(
|
||||||
'%s at %s line %s',
|
'%s at %s line %s',
|
||||||
sanitize_root($message),
|
sanitize_root($message),
|
||||||
|
Loading…
Reference in New Issue
Block a user