17 lines
258 B
C
17 lines
258 B
C
|
//
|
||
|
// Created by servostar on 5/1/24.
|
||
|
//
|
||
|
|
||
|
#include "sys/log.h"
|
||
|
|
||
|
int main(void) {
|
||
|
log_init();
|
||
|
|
||
|
DEBUG("logging some debug...");
|
||
|
INFO("logging some info...");
|
||
|
WARN("logging some warning...");
|
||
|
ERROR("logging some error...");
|
||
|
|
||
|
return 0;
|
||
|
}
|