We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flag::set_value("http_log", "false");//close http log flag::set_value("cout", "true");//logging to terminal. flag::set_value("max_log_file_num", "8"); flag::set_value("max_log_size", "4096"); flag::set_value("max_log_file_size", str::from(256 << 20)); flag::set_value("log_daily", "true"); flag::set_value("log_file_name", logFileName); 我这样设置的日志,但是日志文件超过8个,不会自动删除旧文件?是哪里没弄对吗?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
flag::set_value("http_log", "false");//close http log
flag::set_value("cout", "true");//logging to terminal.
flag::set_value("max_log_file_num", "8");
flag::set_value("max_log_size", "4096");
flag::set_value("max_log_file_size", str::from(256 << 20));
flag::set_value("log_daily", "true");
flag::set_value("log_file_name", logFileName);
我这样设置的日志,但是日志文件超过8个,不会自动删除旧文件?是哪里没弄对吗?
The text was updated successfully, but these errors were encountered: