14 lines
275 B
C
14 lines
275 B
C
#include <libcore.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
printf("test log...\n");
|
|
Assert(1 == 1);
|
|
LOG_TRACE("log trace");
|
|
LOG_NOTSET("log notset");
|
|
LOG_DEBUG("log debug");
|
|
LOG_INFO("log info");
|
|
LOG_WARN("log warn");
|
|
LOG_ERROR("log error");
|
|
}
|