Compare commits
No commits in common. "2d09a584caa0a88fa0ab96afc0fc9942b88a6749" and "8a843d9a6fd33fea10b02fcde9e322aaa76523fa" have entirely different histories.
2d09a584ca
...
8a843d9a6f
@ -503,9 +503,9 @@ abstract class AbstractMessenger extends Parametrable implements IMessenger {
|
|||||||
if ($tech !== null) {
|
if ($tech !== null) {
|
||||||
if ($tech instanceof UserException) {
|
if ($tech instanceof UserException) {
|
||||||
$msg = $tech->getTechMessage();
|
$msg = $tech->getTechMessage();
|
||||||
} elseif ($tech instanceof Throwable || $tech instanceof ExceptionShadow) {
|
} elseif (($tech instanceof Throwable || $tech instanceof ExceptionShadow) && !$printException) {
|
||||||
$techSummary = true;
|
$techSummary = true;
|
||||||
$msg = $printException? UserException::get_summary($tech): null;
|
$msg = UserException::get_summary($tech);
|
||||||
} else {
|
} else {
|
||||||
$msg = $tech;
|
$msg = $tech;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user