mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 08:50:53 +08:00
12 lines
214 B
C++
12 lines
214 B
C++
#include "acl_cpp/stdlib/log.hpp"
|
|
#include "acl_cpp/acl_cpp_test.hpp"
|
|
|
|
int main(void)
|
|
{
|
|
logger_open("test.log", "logger", "all:1");
|
|
|
|
logger("logger opened!");
|
|
acl::log::logger_test1();
|
|
return (0);
|
|
}
|