1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-02 10:51:01 +01:00

Improve availability of MetaMTA debugging info.

Summary:

Test Plan:

Reviewers:

CC:
This commit is contained in:
epriestley 2011-02-10 16:19:17 -08:00
parent 175884e5d2
commit 33a9019a89

View file

@ -247,7 +247,7 @@ class PhabricatorMetaMTAMail extends PhabricatorMetaMTADAO {
$error = null; $error = null;
} catch (Exception $ex) { } catch (Exception $ex) {
$ok = false; $ok = false;
$error = $ex->getMessage(); $error = $ex->getMessage()."\n".$ex->getTraceAsString();
} }
} }