diff --git a/Server/application/common/helper/Debug.php b/Server/application/common/helper/Debug.php
deleted file mode 100644
index bb824d42..00000000
--- a/Server/application/common/helper/Debug.php
+++ /dev/null
@@ -1,354 +0,0 @@
-
调试输出';
- echo '';
- echo '';
-
- $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2);
- $file = isset($trace[0]['file']) ? $trace[0]['file'] : '未知文件';
- $line = isset($trace[0]['line']) ? $trace[0]['line'] : '未知行号';
-
- echo '';
-
- foreach ($args as $index => $arg) {
- echo '';
- echo '
变量 #' . ($index + 1) . '
';
- echo '
' . self::formatVar($arg) . '
';
- echo '
';
- }
-
- // 打印调用栈
- echo '调用栈
';
- echo '';
- $traces = debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT);
- foreach ($traces as $i => $t) {
- if ($i === 0) continue; // 跳过当前函数
- $class = isset($t['class']) ? $t['class'] : '';
- $type = isset($t['type']) ? $t['type'] : '';
- $function = isset($t['function']) ? $t['function'] : '';
- $file = isset($t['file']) ? $t['file'] : '未知文件';
- $line = isset($t['line']) ? $t['line'] : '未知行号';
-
- echo '
';
- echo '#' . $i . ' ';
- echo $file . ' (' . $line . '): ';
- if ($class) {
- echo $class . $type . $function . '()';
- } else {
- echo $function . '()';
- }
- echo '
';
- }
- echo '
';
-
- echo '