Files
logging/tests/test_simple.c
youmetme 86cf4c4526 V0.2.3 (#5)
* #feat 增强Fatal级别的底色,修改logging类的方法

* 更新版本号
2024-09-21 15:21:53 +08:00

15 lines
441 B
C

#include "logging.h"
int main() {
Logging *log = newLogging();
Logger *logger = log->getLogger("testLogger", LOG_DEBUG);
logger->info("This is an info message");
logger->error("你好,这是一个错误消息%s", "123");
logger->fatal("This is an fatal message");
logger->debug("This is a debug message");
logger->warning("This is a warning message%s", "123");
log->destroyLogging(log);
return 0;
}