mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
181 B
C++
12 lines
181 B
C++
![]()
10 years ago
|
#include "includes.h"
|
||
|
|
||
|
void prepare_logdir()
|
||
|
{
|
||
|
spdlog::drop_all();
|
||
|
#ifdef _WIN32
|
||
|
auto rv = system("del /F /Q logs\\*");
|
||
|
#else
|
||
|
auto rv = system("rm -f logs/*");
|
||
|
#endif
|
||
|
}
|