log.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. return [
  15. // 默认日志通道
  16. 'default' => 'file',
  17. // 日志记录级别
  18. 'level' => [],
  19. // 日志类型记录的通道
  20. 'type_channel' => [],
  21. // 关闭全局日志写入
  22. 'close' => false,
  23. // 全局日志处理 支持闭包
  24. 'processor' => null,
  25. // 日志通道列表
  26. 'channels' => [
  27. 'file' => [
  28. // 日志记录方式
  29. 'type' => 'File',
  30. // 日志保存目录
  31. 'path' => '',
  32. // 单文件日志写入
  33. 'single' => true,
  34. // 独立日志级别
  35. 'apart_level' => true,
  36. // 每个文件大小 ( 10兆 )
  37. 'file_size' => 10485760,
  38. // 日志日期格式
  39. 'time_format' => 'Y-m-d H:i:s',
  40. // 最大日志文件数量
  41. 'max_files' => 100,
  42. // 使用JSON格式记录
  43. 'json' => false,
  44. // 日志处理
  45. 'processor' => null,
  46. // 关闭通道日志写入
  47. 'close' => false,
  48. // 日志输出格式化
  49. 'format' => '[%s][%s] %s',
  50. // 是否实时写入
  51. 'realtime_write' => false,
  52. ],
  53. ],
  54. ];