mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-11 07:34:12 +02:00
Normalize the way backtraces are normalized and remove args for special cases, fixes #1346
This commit is contained in:
@@ -28,7 +28,7 @@ class ScalarFormatterTest extends \PHPUnit_Framework_TestCase
|
||||
if (isset($frame['file'])) {
|
||||
$data[] = $frame['file'].':'.$frame['line'];
|
||||
} else {
|
||||
$data[] = json_encode($frame);
|
||||
$data[] = (!empty($frame['class']) ? $frame['class'].$frame['type'] : '').$frame['function'];
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user