Skip to content

Commit

Permalink
use print_r instead of var_export, which crashes on circular references
Browse files Browse the repository at this point in the history
  • Loading branch information
WanWizard committed Sep 14, 2016
1 parent 206b4bd commit 27c8518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/console.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private function main()
}
elseif ( ! is_null($ret))
{
var_export($ret);
print_r($ret);
}
}

Expand Down

0 comments on commit 27c8518

Please sign in to comment.