zengine-old/engine/3rdparty/zlog/test/01file.cpp
2024-02-28 01:32:58 +08:00

9 lines
171 B
C++

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