trace.php 1.1 KB

12345678910111213141516171819202122232425
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | Trace设置 开启 app_trace 后 有效
  13. // +----------------------------------------------------------------------
  14. return [
  15. // 内置Html Console 支持扩展
  16. 'type' => 'console',
  17. 'trace_tabs' => [
  18. 'base' => '基本',
  19. 'file' => '文件',
  20. 'error|notice|warning' => '错误',
  21. 'sql' => 'SQL',
  22. 'debug|info' => '调试',
  23. ]
  24. ];