diff --git a/server/main.cpp b/server/main.cpp index 3b5dfe2c..92cbd8c6 100644 --- a/server/main.cpp +++ b/server/main.cpp @@ -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);