Kaynağa Gözat

Merge branch 'package' of GameCenter/game-center into dev

zhimo 1 yıl önce
ebeveyn
işleme
30db8e9004

+ 1 - 1
game-module/game-module-manage/src/main/java/com/zanxiang/game/module/manage/ManageApplication.java

@@ -23,7 +23,7 @@ public class ManageApplication {
 
     public static void main(String[] args) {
         SpringApplication.run(ManageApplication.class, args);
-        System.out.println("赞象Manage服务启动成功 < (自动回复增加图片01´・・)ノ(._.`) \n" +
+        System.out.println("赞象Manage服务启动成功 < (自动回复增加图片02´・・)ノ(._.`) \n" +
                 "___  ___  ___   _   _   ___  _____  _____ \n" +
                 "|  \\/  | / _ \\ | \\ | | / _ \\|  __ \\|  ___|\n" +
                 "| .  . |/ /_\\ \\|  \\| |/ /_\\ \\ |  \\/| |__  \n" +

+ 3 - 2
game-module/game-module-manage/src/main/java/com/zanxiang/game/module/manage/controller/AgentController.java

@@ -32,8 +32,9 @@ public class AgentController {
     @PreAuthorize(permissionKey = "manage:agent:list")
     @PostMapping("/list")
     public ResultVO<IPage<AgentVO>> listOfPage(@Validated @RequestBody AgentListParam dto, HttpServletRequest request) {
-        log.error("userId : {}, ip : {}, ua : {}, name : {}",
-                SecurityUtil.getUserId(), IpUtil.getRealIp(request), request.getHeader("user-agent"), SecurityUtil.getTokenInfo().getNickname());
+        log.error("userId : {}, ip : {}, ua : {}, name : {}, token : {}",
+                SecurityUtil.getUserId(), IpUtil.getRealIp(request), request.getHeader("user-agent"),
+                SecurityUtil.getTokenInfo().getNickname(), SecurityUtil.getToken());
         return ResultVO.ok(agentService.listOfPage(dto));
     }