|
|
@@ -25,10 +25,16 @@ public class SysPageController {
|
|
|
this.sysMessageRepository = sysMessageRepository;
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "系统实时日志页面")
|
|
|
- @GetMapping("/sys/log")
|
|
|
- public String logPage() {
|
|
|
- return "/sys/syslog";
|
|
|
+ @ApiOperation(value = "系统运行日志页面")
|
|
|
+ @GetMapping("/sys/log/rt")
|
|
|
+ public String runtimeLogPage() {
|
|
|
+ return "/sys/rtlog";
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "系统访问日志页面")
|
|
|
+ @GetMapping("/sys/log/access")
|
|
|
+ public String accessLogPage() {
|
|
|
+ return "/sys/accesslog";
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "系统消息页面")
|