From c58669e3890684bfd59f9938250f48806b9b1c6c Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9sar=20D=2E=20Rodas?= Date: Wed, 26 May 2010 00:45:38 -0400 Subject: [PATCH] - Removed debug variables --- lib/Cache.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/Cache.php b/lib/Cache.php index 1abb481..2ae79a5 100644 --- a/lib/Cache.php +++ b/lib/Cache.php @@ -137,12 +137,6 @@ abstract class CacheDriver */ function serialize($object) { - if (count(debug_backtrace()) > 200) { - foreach(debug_backtrace() as $trace) { - var_dump(array(@$trace['function'], @$trace['file'], @$trace['line'])); - } - die(); - } return bson_encode($object); } -- 2.11.4.GIT