zengine-old/engine/3rdparty/zlog/test/01file.cpp

9 lines
171 B
C++
Raw Permalink Normal View History

2024-02-28 01:32:58 +08:00
#include <iostream>
#include "zlog.h"
int main() {
zlog::info("hello info");
zlog::warn("hello {}", "warn");
zlog::error("hello {}", "error");
return 0;
}