#include #include "zlog.h" int main() { zlog::info("hello info"); zlog::warn("hello {}", "warn"); zlog::error("hello {}", "error"); return 0; }