refactor🎨: 日志中的位置获取函数添加key传入

This commit is contained in:
zhangwenjian
2021-06-10 11:24:17 +08:00
parent 3d620d0149
commit 49c6febdf0
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -4,6 +4,7 @@ import (
"bufio"
"bytes"
"encoding/json"
gaConfig "go-admin/config"
"io"
"io/ioutil"
"net/http"
@@ -104,7 +105,7 @@ func SetDBOperLog(c *gin.Context, clientIP string, statusCode int, reqUri string
l["_fullPath"] = c.FullPath()
l["operUrl"] = reqUri
l["operIp"] = clientIP
l["operLocation"] = pkg.GetLocation(clientIP)
l["operLocation"] = pkg.GetLocation(clientIP, gaConfig.ExtConfig.AMap.Key)
l["operName"] = user.GetUserName(c)
l["requestMethod"] = c.Request.Method
l["operParam"] = body