2024-05-02 08:50:24 +00:00
|
|
|
//
|
|
|
|
// Created by servostar on 5/2/24.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "sys/log.h"
|
2024-05-30 19:43:14 +00:00
|
|
|
#include <sys/col.h>
|
2024-05-02 08:50:24 +00:00
|
|
|
|
|
|
|
#define LOG_LEVEL LOG_LEVEL_WARNING
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
log_init();
|
2024-05-30 19:43:14 +00:00
|
|
|
col_init();
|
2024-05-02 08:50:24 +00:00
|
|
|
|
|
|
|
DEBUG("logging some debug...");
|
|
|
|
INFO("logging some info...");
|
|
|
|
WARN("logging some warning...");
|
|
|
|
ERROR("logging some error...");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|