@@ -70,13 +70,13 @@ public class Config extends ConfigBase {
70
70
@ ConfField (description = {"FE 日志的级别" , "The level of FE log" }, options = {"INFO" , "WARN" , "ERROR" , "FATAL" })
71
71
public static String sys_log_level = "INFO" ;
72
72
73
- @ ConfField (description = {"FE 日志的输出模式,其中 NORMAL 为默认的输出模式,日志同步输出且包含位置信息, "
74
- + "BRIEF 模式是日志同步输出但不包含位置信息,ASYNC 模式是日志异步输出且不包含位置信息 ,三种日志输出模式的性能依次递增" ,
75
- "The output mode of FE log, and NORMAL mode is the default output mode, which means the logs are "
76
- + "synchronized and contain location information. BRIEF mode is synchronized and does not contain "
77
- + " location information. ASYNC mode is asynchronous and does not contain location information."
78
- + " The performance of the three log output modes increases in sequence " },
79
- options = {"NORMAL" , "BRIEF " , "ASYNC " })
73
+ @ ConfField (description = {"FE 日志的输出模式,其中 NORMAL 模式是日志同步输出且包含位置信息;ASYNC 模式为默认模式,日志异步输出 "
74
+ + "且包含位置信息; BRIEF 是日志异步输出但不包含位置信息 ,三种日志输出模式的性能依次递增" ,
75
+ "The output mode of FE log. NORMAL mode is synchronous output with location information; "
76
+ + "ASYNC mode is the default mode, asynchronous output with location information; "
77
+ + "BRIEF is asynchronous output without location information. "
78
+ + "The performance of the three log output modes increases in turn " },
79
+ options = {"NORMAL" , "ASYNC " , "BRIEF " })
80
80
public static String sys_log_mode = "NORMAL" ;
81
81
82
82
@ ConfField (description = {"FE 日志文件的最大数量。超过这个数量后,最老的日志文件会被删除" ,
0 commit comments