-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_package.cpp
46 lines (37 loc) · 1.3 KB
/
test_package.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <sisl/logging/logging.h>
#include <sisl/options/options.h>
#include <sisl/utility/thread_factory.hpp>
SISL_LOGGING_DECL(my_module)
SISL_LOGGING_INIT(my_module)
SISL_OPTIONS_ENABLE(logging)
extern void example_decl();
using namespace std::chrono_literals;
[[ maybe_unused ]]
void crash() { volatile int* a = (int*)(NULL); *a = 1; }
int main(int argc, char** argv) {
SISL_OPTIONS_LOAD(argc, argv, logging)
sisl::logging::SetLogger(std::string(argv[0]));
sisl::logging::install_crash_handler();
spdlog::set_pattern("[%D %T%z] [%^%l%$] [%n] [%t] %v");
LOGTRACE("Trace");
LOGDEBUG("Debug");
LOGINFO("Info");
LOGWARN("Warning");
LOGERROR("Error");
LOGCRITICAL("Critical");
auto _thread = std::thread([]() {
LOGWARNMOD(my_module, "Sleeping...");
std::this_thread::sleep_for(1500ms);
LOGINFOMOD(my_module, "Waking...");
std::this_thread::sleep_for(1500ms);
});
sisl::name_thread(_thread, "example_decl");
std::this_thread::sleep_for(300ms);
auto custom_logger =
sisl::logging::CreateCustomLogger("test_package", "_custom", false /*stdout*/, true /*stderr*/);
LOGINFOMOD_USING_LOGGER(my_module, custom_logger, "hello world");
DEBUG_ASSERT(true, "Always True");
_thread.join();
// crash();
return 0;
}