From 3a1046f215bba9c9eab1ebda69eeb48806851abc Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Sat, 21 May 2022 23:28:04 +0200 Subject: [PATCH] Detailed exception log --- snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php b/snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php index 3fd871e92..5b95b9069 100644 --- a/snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php +++ b/snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php @@ -170,7 +170,7 @@ class ServiceActions } catch (\Throwable $oException) { - \SnappyMail\Log::warning('SERVICE', $oException->getMessage()); + \SnappyMail\Log::warning('SERVICE', "{$oException->getMessage()}\r\n{$oException->getTraceAsString()}"); if ($e = $oException->getPrevious()) { \SnappyMail\Log::warning('SERVICE', "- {$e->getMessage()} @ {$e->getFile()}#{$e->getLine()}"); }