mirror of https://github.com/gabime/spdlog.git
You can not 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
366 B
12 lines
366 B
#include "spdlite.h"
|
|
|
|
int main()
|
|
{
|
|
spdlite::default_logger().set_level(spdlite::level::trace);
|
|
spdlite::trace_printf("Hello %d", 123);
|
|
spdlite::debug_printf("Hello %d", 123);
|
|
spdlite::info_printf("Hello %d", 123);
|
|
spdlite::warn_printf("Hello %d", 123);
|
|
spdlite::error_printf("Hello %d", 123);
|
|
spdlite::critical_printf("Hello %d", 123);
|
|
} |