| 29 | |
| 30 | |
| 31 | void TestLog::Process() { |
| 32 | comm::LogFunc log_func; |
| 33 | plugin::LoggerGoogle::GetLogger("test_log", "./log/test", 2, log_func); // level: warn |
| 34 | comm::Logger::GetInstance()->SetLogFunc(log_func); |
| 35 | |
| 36 | NLErr("error"); |
| 37 | NLWarn("warn"); |
| 38 | NLInfo("info"); |
| 39 | } |
| 40 | |
| 41 | } // namespace test |
| 42 |
nothing calls this directly
no test coverage detected