2003-12-13 23:53:17 +01:00
|
|
|
/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-05-10 05:53:24 +02:00
|
|
|
/**
|
|
|
|
* /file log.h
|
|
|
|
*
|
|
|
|
* /brief Headers for logging functions.
|
|
|
|
**/
|
|
|
|
|
2002-06-27 00:45:49 +02:00
|
|
|
#ifndef __LOG_H
|
|
|
|
|
2004-05-10 09:54:13 +02:00
|
|
|
/**
|
|
|
|
* \file log.h
|
|
|
|
* \brief Headers for log.c
|
|
|
|
*/
|
|
|
|
|
2003-08-12 05:08:41 +02:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
2002-06-27 00:45:49 +02:00
|
|
|
#include <syslog.h>
|
2003-10-10 03:48:03 +02:00
|
|
|
#define LOG_WARN LOG_WARNING
|
2003-08-12 05:08:41 +02:00
|
|
|
#else
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Debug-level severity: for hyper-verbose messages of no interest to
|
|
|
|
* anybody but developers. */
|
2003-08-12 05:08:41 +02:00
|
|
|
#define LOG_DEBUG 0
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Info-level severity: for messages that appear frequently during normal
|
|
|
|
* operation. */
|
2003-08-12 05:08:41 +02:00
|
|
|
#define LOG_INFO 1
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Notice-level severity: for messages that appear infrequently
|
|
|
|
* during normal operation; that the user will probably care about;
|
|
|
|
* and that are not errors.
|
|
|
|
*/
|
2004-03-30 05:15:23 +02:00
|
|
|
#define LOG_NOTICE 2
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Warn-level severity: for messages that only appear when something has gone
|
|
|
|
* wrong. */
|
2003-10-10 03:48:03 +02:00
|
|
|
#define LOG_WARN 3
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Warn-level severity: for messages that only appear when something has gone
|
|
|
|
* very wrong, and the Tor process can no longer proceed. */
|
2003-08-12 05:08:41 +02:00
|
|
|
#define LOG_ERR 4
|
|
|
|
#endif
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2003-12-17 22:14:13 +01:00
|
|
|
/* magic to make GCC check for proper format strings. */
|
2003-06-18 00:14:44 +02:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define CHECK_PRINTF(formatIdx, firstArg) \
|
|
|
|
__attribute__ ((format (printf, formatIdx, firstArg)))
|
|
|
|
#else
|
2003-12-17 22:14:13 +01:00
|
|
|
#define CHECK_PRINTF(formatIdx, firstArg)
|
|
|
|
#endif
|
2003-06-18 00:14:44 +02:00
|
|
|
|
2003-09-16 19:58:36 +02:00
|
|
|
void add_stream_log(int loglevel, const char *name, FILE *stream);
|
2003-10-15 20:38:38 +02:00
|
|
|
int add_file_log(int severity, const char *filename);
|
2003-09-16 19:58:36 +02:00
|
|
|
void close_logs();
|
|
|
|
void reset_logs();
|
|
|
|
|
2003-06-24 07:18:12 +02:00
|
|
|
/* Outputs a message to stdout */
|
2003-10-07 18:30:05 +02:00
|
|
|
void _log(int severity, const char *format, ...) CHECK_PRINTF(2,3);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2003-05-09 04:41:27 +02:00
|
|
|
#ifdef __GNUC__
|
2003-06-18 00:14:44 +02:00
|
|
|
void _log_fn(int severity, const char *funcname, const char *format, ...)
|
|
|
|
CHECK_PRINTF(3,4);
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Log a message at level <b>severity</b>, using a pretty-printed version
|
|
|
|
* of the current function name. */
|
2003-06-17 23:15:25 +02:00
|
|
|
#define log_fn(severity, args...) \
|
2003-06-17 23:36:44 +02:00
|
|
|
_log_fn(severity, __PRETTY_FUNCTION__, args)
|
2003-05-09 04:25:37 +02:00
|
|
|
#else
|
2003-10-07 18:30:05 +02:00
|
|
|
#define log_fn _log
|
2003-05-09 04:25:37 +02:00
|
|
|
#endif
|
2003-10-07 18:30:05 +02:00
|
|
|
#define log _log /* hack it so we don't conflict with log() as much */
|
2003-05-09 04:25:37 +02:00
|
|
|
|
2002-06-27 00:45:49 +02:00
|
|
|
# define __LOG_H
|
|
|
|
#endif
|
2004-04-06 05:44:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
mode:c
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
c-basic-offset:2
|
|
|
|
End:
|
|
|
|
*/
|