create project structure
This commit is contained in:
15
libmysyslog-text/src/log_text.c
Normal file
15
libmysyslog-text/src/log_text.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
#include "log_text.h"
|
||||
|
||||
void log_text(const char* msg, LogLevel level, const char* path) {
|
||||
FILE* f = fopen(path, "a");
|
||||
if (!f) return;
|
||||
|
||||
time_t t = time(NULL);
|
||||
struct tm* tm_info = localtime(&t);
|
||||
|
||||
// Format log entry
|
||||
fprintf(f, "%ld %d example-app %s\n", t, level, msg);
|
||||
fclose(f);
|
||||
}
|
||||
Reference in New Issue
Block a user