mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-09 08:02:48 +08:00
还原
This commit is contained in:
@@ -79,9 +79,6 @@ class App
|
|||||||
Session::init($config['session']);
|
Session::init($config['session']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 日志初始化
|
|
||||||
Log::init($config['log']);
|
|
||||||
|
|
||||||
if (empty(self::$dispatch['type'])) {
|
if (empty(self::$dispatch['type'])) {
|
||||||
// 未指定调度类型 则进行URL路由检测
|
// 未指定调度类型 则进行URL路由检测
|
||||||
self::route($config);
|
self::route($config);
|
||||||
|
|||||||
@@ -80,6 +80,9 @@ class Log
|
|||||||
*/
|
*/
|
||||||
public static function save()
|
public static function save()
|
||||||
{
|
{
|
||||||
|
if (is_null(self::$driver)) {
|
||||||
|
self::init(Config::get('log'));
|
||||||
|
}
|
||||||
self::$driver->save(self::$log);
|
self::$driver->save(self::$log);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,6 +102,9 @@ class Log
|
|||||||
|
|
||||||
// 监听log_write
|
// 监听log_write
|
||||||
APP_HOOK && Hook::listen('log_write', $log);
|
APP_HOOK && Hook::listen('log_write', $log);
|
||||||
|
if (is_null(self::$driver)) {
|
||||||
|
self::init(Config::get('log'));
|
||||||
|
}
|
||||||
// 写入日志
|
// 写入日志
|
||||||
self::$driver->save($log);
|
self::$driver->save($log);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user