Compare commits

...

2 Commits

Author SHA1 Message Date
Pavel Shevaev 4dc8093881 Adding exception source file and line in digest message
Publish PHP Package / docker (push) Successful in 7s Details
2025-02-27 22:20:38 +03:00
Pavel Shevaev 654c11f8d9 Filtering all error lines
Publish PHP Package / docker (push) Successful in 7s Details
2025-02-25 18:10:18 +03:00
1 changed files with 5 additions and 1 deletions

View File

@ -22,8 +22,12 @@ function _gamectl_exception_handler($e)
//let's filter out too stack traces which are printed anyway
foreach($lines as $idx => $line)
{
if($idx === 0)
{
$line = 'Exception in ' . $e->getFile() . ':' . $e->getLine() . "\n" . $line;
}
if($idx > 0 && preg_match('~^#\d+\s+~', $line))
break;
continue;
$digest .= $line . "\n";
}
$digest = trim($digest);