mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Fix #321 incorrect display of objects in debugPrint()
This commit is contained in:
parent
60c46901c6
commit
34a86defb6
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ class Debug
|
|||
$entry = (object)array(
|
||||
'type' => 'Debug',
|
||||
'time' => microtime(true),
|
||||
'message' => $message,
|
||||
'message' => unserialize(serialize($message)),
|
||||
'file' => isset($backtrace[0]['file']) ? $backtrace[0]['file'] : null,
|
||||
'line' => isset($backtrace[0]['line']) ? $backtrace[0]['line'] : 0,
|
||||
'backtrace' => $backtrace,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue