You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.1 KiB
56 lines
2.1 KiB
2 months ago
|
<?php
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author: liu21st <liu21st@gmail.com>
|
||
|
// +----------------------------------------------------------------------
|
||
|
use think\facade\Env;
|
||
|
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | 日志设置
|
||
|
// +----------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
return [
|
||
|
// 默认日志记录通道
|
||
|
'default' => Env::get('log.channel', 'file') ,
|
||
|
// 日志记录级别
|
||
|
'level' => [],
|
||
|
// 日志类型记录的通道 ['error'=>'email',...]
|
||
|
'type_channel' => [],
|
||
|
// 是否关闭日志写入
|
||
|
'close' => Env::get('APP_DEBUG', false) ,
|
||
|
|
||
|
// 日志通道列表
|
||
|
'channels' => [
|
||
|
'file' => [
|
||
|
// 日志记录方式
|
||
|
'type' => 'File',
|
||
|
// 日志保存目录
|
||
|
'path' => '',
|
||
|
// 单文件日志写入
|
||
|
'single' => true,
|
||
|
// 独立日志级别
|
||
|
'apart_level' => [],
|
||
|
// 最大日志文件数量
|
||
|
'max_files' => 100,
|
||
|
//文件大小
|
||
|
'file_size' => 1024,
|
||
|
],
|
||
|
// 其它日志通道配置
|
||
|
'SocketLog'=> [
|
||
|
'type' => 'SocketLog',
|
||
|
'host' => 'slog.migugu.com',
|
||
|
//日志强制记录到配置的client_id
|
||
|
'force_client_ids' => ['shuixian_zfH5NbLn','longbing_TkbB7uznHAdfLtCP','chenniang_qkEAbc1vgmKlL6H0'],
|
||
|
//限制允许读取日志的client_id
|
||
|
'allow_client_ids' => ['shuixian_zfH5NbLn','longbing_TkbB7uznHAdfLtCP','chenniang_qkEAbc1vgmKlL6H0'],
|
||
|
]
|
||
|
],
|
||
|
|
||
|
];
|