From 8f6568e5a766ee29d27384728989de33472fb862 Mon Sep 17 00:00:00 2001 From: haneul Date: Mon, 8 Sep 2008 03:23:46 +0000 Subject: [PATCH] =?UTF-8?q?debugPrint=EC=97=90=20=EC=8B=9C=EA=B0=84=20?= =?UTF-8?q?=ED=91=9C=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4483 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- config/func.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/func.inc.php b/config/func.inc.php index 73999c442..6abcfafa0 100644 --- a/config/func.inc.php +++ b/config/func.inc.php @@ -316,7 +316,7 @@ $debug_file = _XE_PATH_."files/_debug_message.php"; $bt = debug_backtrace(); if(is_array($bt)) $first = array_shift($bt); - $buff = sprintf("[%s:%d]\n%s\n", array_pop(explode(DIRECTORY_SEPARATOR, $first["file"])), $first["line"], print_r($buff,true)); + $buff = sprintf("[%s %s:%d]\n%s\n", date("Y-m-d H:i:s"), array_pop(explode(DIRECTORY_SEPARATOR, $first["file"])), $first["line"], print_r($buff,true)); if($display_line) $buff = "\n====================================\n".$buff."------------------------------------\n";