From e7838d22536cfbc36fbb23f43baa6f643367545a Mon Sep 17 00:00:00 2001 From: Vladimir Razuvaev Date: Tue, 25 Jul 2017 20:08:34 +0700 Subject: [PATCH] Do not output trace for trivial errors even in debug mode --- src/Error/FormattedError.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Error/FormattedError.php b/src/Error/FormattedError.php index 7e611b8..42605ee 100644 --- a/src/Error/FormattedError.php +++ b/src/Error/FormattedError.php @@ -91,8 +91,12 @@ class FormattedError } if ($debug & self::INCLUDE_TRACE > 0) { - $debugging = $e->getPrevious() ?: $e; - $result['trace'] = static::toSafeTrace($debugging->getTrace()); + $isTrivial = $e instanceof Error && !$e->getPrevious(); + + if (!$isTrivial) { + $debugging = $e->getPrevious() ?: $e; + $result['trace'] = static::toSafeTrace($debugging->getTrace()); + } } return $result;