日志默认调整为debug级别

This commit is contained in:
xiongziliang 2023-04-22 22:03:30 +08:00
parent 7a95c87a29
commit 967fe035ab

View File

@ -123,7 +123,7 @@ public:
(*_parser) << Option('l',/*该选项简称,如果是\x00则说明无简称*/
"level",/*该选项全称,每个选项必须有全称不得为null或空字符串*/
Option::ArgRequired,/*该选项后面必须跟值*/
to_string(LTrace).data(),/*该选项默认值*/
to_string(LDebug).data(),/*该选项默认值*/
false,/*该选项是否必须赋值如果没有默认值且为ArgRequired时用户必须提供该参数否则将抛异常*/
"日志等级,LTrace~LError(0~4)",/*该选项说明文字*/
nullptr);