Skip to content

Commit

Permalink
Update ExceptionEncoder.php (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
aivis committed Sep 27, 2019
1 parent 4e703e3 commit bc43b8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Understand/UnderstandLaravel5/ExceptionEncoder.php
Expand Up @@ -301,7 +301,7 @@ protected function stackTraceArgsToArray(array $trace)
}
else if (is_string($arg))
{
$params[] = 'string(' . $arg . ')';
$params[] = 'string(' . (strlen($arg) > 70 ? substr($arg, 0, 70) . '...' : $arg) . ')';
}
else if (is_int($arg))
{
Expand Down

0 comments on commit bc43b8c

Please sign in to comment.