aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/Utils.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/Utils.php')
-rw-r--r--application/Utils.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/application/Utils.php b/application/Utils.php
index bcfda65c..37be9a13 100644
--- a/application/Utils.php
+++ b/application/Utils.php
@@ -463,3 +463,12 @@ function t($text, $nText = '', $nb = 1, $domain = 'shaarli')
463{ 463{
464 return dn__($domain, $text, $nText, $nb); 464 return dn__($domain, $text, $nText, $nb);
465} 465}
466
467/**
468 * Converts an exception into a printable stack trace string.
469 */
470function exception2text(Throwable $e): string
471{
472 return $e->getMessage() . PHP_EOL . $e->getFile() . $e->getLine() . PHP_EOL . $e->getTraceAsString();
473}
474