forked from nicolasff/webdis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slog.c
34 lines (27 loc) · 843 Bytes
/
slog.c
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
27
28
29
30
31
32
33
34
/* A slog is a simple log. Basically extracted from antirez/redis. */
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <time.h>
#include <sys/types.h>
#include <unistd.h>
#include "slog.h"
#include "server.h"
#include "conf.h"
void slog(const struct server *s, log_level level, const char *body) {
const char *c = ".-*#";
time_t now = time(NULL);
static FILE *fp = NULL;
char buf[64];
char msg[124];
static pid_t self = 0;
if(!self) self = getpid();
if(level > s->cfg->verbosity) return; /* too verbose */
if(!fp) fp = (s->cfg->logfile == NULL) ? stdout : fopen(s->cfg->logfile, "a");
if(!fp) return;
/* limit message size */
snprintf(msg, sizeof(msg), "%s", body);
strftime(buf,sizeof(buf),"%d %b %H:%M:%S",localtime(&now));
fprintf(fp,"[%d] %s %c %s\n", (int)self, buf, c[level], msg);
fflush(fp);
}