mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update OplogService.php
This commit is contained in:
parent
42a67eec87
commit
5491e3c043
@ -17,6 +17,7 @@ namespace app\admin\service;
|
||||
|
||||
use library\tools\Node;
|
||||
use think\Db;
|
||||
use think\facade\Request;
|
||||
|
||||
/**
|
||||
* 系统日志服务管理
|
||||
@ -35,7 +36,7 @@ class OplogService
|
||||
{
|
||||
return Db::name('SystemLog')->insert([
|
||||
'node' => Node::current(), 'action' => $action, 'content' => $content,
|
||||
'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : request()->ip(),
|
||||
'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : Request::ip(),
|
||||
'username' => PHP_SAPI === 'cli' ? 'cli' : (string)session('admin_user.username'),
|
||||
]);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user