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