1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-04 09:29:26 +00:00
erc-c/include/log.h
2017-12-06 21:25:47 -06:00

20 lines
396 B
C

#ifndef _LOG_H_
#define _LOG_H_
#include <stdio.h>
#define LOG_FILENAME "/tmp/emp.log"
extern void log_write(int, const char *, ...);
extern void log_close();
extern void log_open(FILE *);
/*
* Here we have a couple of convenience macros that abstracts the log
* level number.
*/
#define log_critical(...) log_write(0, __VA_ARGS__)
#define log_error(...) log_write(0, __VA_ARGS__)
#endif