diff --git a/application/core/ErrorHandler.php b/application/core/ErrorHandler.php index 3c394142..4df789d8 100644 --- a/application/core/ErrorHandler.php +++ b/application/core/ErrorHandler.php @@ -254,7 +254,7 @@ class ErrorHandler { $type = gettype($arg); $string .= $type . '('; if (is_string($arg)) { - print_r(substr($arg, 0, 50), true); + print_r(substr($arg, 0, 20), true); } else { print_r($arg, true); }