MIPI_BaseC_WebinarFRTK/13_Lecture13/01_logir_sclog4c_p8.c

11 lines
206 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
//Логирование sclog4c
#include <stdio.h>
#include "sclog4c.c"
int main(int argc, char *argv[])
{
sclog4c_level = SL4C_ALL;
logm(SL4C_DEBUG, "Program name: %s", argv[0]);
return 0;
}