Commit c4291510 authored by gabime's avatar gabime

renamed printf

parent 775a4112
......@@ -2,11 +2,11 @@
int main()
{
auto l = spdlog::create_lite((void*)"async");
auto l = spdlog::create_lite();
l.set_level(spdlog::lite::level::trace);
l.trace_printf("Hello %s ", "GABI");
l.info_printf("Hello %d", 12346);
l.warn_printf("Hello %f", 12346.5656);
l.warn("Hello {}", 12346.5656);
l.warn("Hello {}", "LITE :) ");
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment