From 63a08062bdf599f3161bf39ea58b8c8029cc9335 Mon Sep 17 00:00:00 2001 From: toogee Date: Wed, 20 May 2020 11:48:50 +0800 Subject: [PATCH] =?UTF-8?q?Log=E6=97=A5=E5=BF=97=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/log.php | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/config/log.php b/config/log.php index ea24ff9..ef8af09 100644 --- a/config/log.php +++ b/config/log.php @@ -40,6 +40,38 @@ return [ 'realtime_write' => false, ], // 其它日志通道配置 + 'login' => [ + // 日志记录方式 + 'type' => 'File', + // 日志保存目录 + 'path' => '../runtime/log/login/', + // 单文件日志写入 + 'single' => false, + // 最大日志文件数量 + 'max_files' => 0, + // 日志处理 + 'processor' => null, + // 日志输出格式化 + 'format' => '[%s][%s] %s', + // 是否实时写入 + 'realtime_write' => true, + ], + 'browse' => [ + // 日志记录方式 + 'type' => 'File', + // 日志保存目录 + 'path' => '../runtime/log/browse/', + // 单文件日志写入 + 'single' => false, + // 最大日志文件数量 + 'max_files' => 0, + // 日志处理 + 'processor' => null, + // 日志输出格式化 + 'format' => '[%s][%s] %s', + // 是否实时写入 + 'realtime_write' => true, + ], ], ];