You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
843 B
C

/* 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);
}