Skip to content

Commit 8a5bfbf

Browse files
committed
fixed exception logging message
1 parent 9696f40 commit 8a5bfbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Logger.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public static function exception(Exception $e, $name = 'error')
7575
$trackIdKey = env('XLOG_TRACK_ID_KEY', 'xTrackId');
7676

7777
$arguments = [];
78-
$arguments [0] = 'exception' . $e->getMessage();
78+
$arguments [0] = 'exception-> ' . $e->getMessage();
7979
$arguments [1] = [
8080
'code' => $e->getCode(),
8181
'file' => basename($e->getFile()),

0 commit comments

Comments
 (0)