log.php 2.1 KB

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