tor/src/common/log.h
2003-06-17 21:15:25 +00:00

30 lines
569 B
C

/*
* log.h
* Logging facilities.
*
* Matej Pfajfar <mp292@cam.ac.uk>
*/
#ifndef __LOG_H
#include <syslog.h>
/* Outputs a message to stdout and also logs the same message using syslog. */
void log(int severity, const char *format, ...);
#ifdef __GNUC__
#ifdef __APPLE_CPP__
#define log_fn(severity, args...) \
log((severity), __PRETTY_FUNCTION__ "(): " args)
#else
#define log_fn(severity, format, args...) \
log((severity), "%s(): " format, __PRETTY_FUNCTION__ , ##args)
#endif
#else
#define log_fn log
#define log_fnf log
#endif
# define __LOG_H
#endif