summaryrefslogtreecommitdiff
path: root/logging.c
blob: 2ad170445b98952bb6460299ceab2f0141cf7c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// Created by Keuin on 2021/12/28.
//

#include "logging.h"
#include <stdio.h>


void *log_init(const char *filename) {
    FILE *fp = fopen(filename, "a");
    return fp;
}

void log_free(void *logger) {
    fflush(logger);
    fclose(logger);
}

void log_print(void *logger, const char *level, time_t ts, const char *filename, int lineno, const char *msg) {
    char timestr[32];
    strftime(timestr, 31, "%Y-%m-%d %H:%M:%S", localtime(&ts));
    if (fprintf(logger, "[%s][%s][%s][%d] %s\n", timestr, level, filename, lineno, msg))
        fflush(logger);
    if (fprintf(stderr, "[%s][%s][%s][%d] %s\n", timestr, level, filename, lineno, msg))
        fflush(stderr);
}