diff options
| author | Federico Angelilli <code@fedang.net> | 2024-03-20 23:26:43 +0100 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-03-20 23:26:43 +0100 |
| commit | f505ff79795d7d8a6255da636afac09213efc0d9 (patch) | |
| tree | 2cf0db9169c11d57b3409dc426ddff558a3fd70a /test.c | |
Add any_log.h
Diffstat (limited to 'test.c')
| -rw-r--r-- | test.c | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +#define ANY_LOG_IMPLEMENT +#define ANY_LOG_MODULE "test" +#include "any_log.h" + +int main() +{ + log_trace("Hello"); + log_debug("Hello"); + log_info("Hello"); + log_warn("Hello"); + log_error("Hello"); + log_panic("Hello"); + + return 0; +} |
