mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-28 09:09:35 +08:00
clang format
This commit is contained in:
@@ -54,19 +54,18 @@ int main(int argc, char *argv[])
|
||||
cout << "******************************************************************"
|
||||
"*************\n";
|
||||
|
||||
|
||||
bench(howmany, spdlog::create<null_sink_st>("null_st"));
|
||||
return 0;
|
||||
bench(howmany, spdlog::create<null_sink_st>("null_st"));
|
||||
return 0;
|
||||
|
||||
auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st.log", file_size, rotating_files);
|
||||
bench(howmany, rotating_st);
|
||||
|
||||
return 0;
|
||||
return 0;
|
||||
auto basic_st = spdlog::basic_logger_st("basic_st", "logs/basic_st.log", true);
|
||||
bench(howmany, basic_st);
|
||||
|
||||
//auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st.log", file_size, rotating_files);
|
||||
//bench(howmany, rotating_st);
|
||||
// auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st.log", file_size, rotating_files);
|
||||
// bench(howmany, rotating_st);
|
||||
|
||||
auto daily_st = spdlog::daily_logger_st("daily_st", "logs/daily_st.log");
|
||||
bench(howmany, daily_st);
|
||||
|
Reference in New Issue
Block a user