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.
spdlog/lite-example/example.cpp

12 lines
366 B
C++

7 years ago
#include "spdlite.h"
7 years ago
int main()
7 years ago
{
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);
7 years ago
}