This commit is contained in:
Jephté Clain 2025-06-26 13:43:33 +04:00
parent bb4f202adc
commit 8c37c6ab75

View File

@ -503,9 +503,9 @@ abstract class AbstractMessenger extends Parametrable implements IMessenger {
if ($tech !== null) {
if ($tech instanceof UserException) {
$msg = $tech->getTechMessage();
} elseif (($tech instanceof Throwable || $tech instanceof ExceptionShadow) && !$printException) {
} elseif ($tech instanceof Throwable || $tech instanceof ExceptionShadow) {
$techSummary = true;
$msg = UserException::get_summary($tech);
$msg = $printException? UserException::get_summary($tech): null;
} else {
$msg = $tech;
}