File: logging.h

package info (click to toggle)
courierpasswd 1.1.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 1,360 kB
  • ctags: 113
  • sloc: sh: 7,884; ansic: 904; makefile: 16
file content (55 lines) | stat: -rw-r--r-- 1,220 bytes parent folder | download
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

Copyright (c) Andrew St. Jean <andrew@arda.homeunix.nst> 2002

Provide logging facilities

*/

#ifndef LOGGING_H_
#define LOGGING_H_ 1

#include <stdio.h>
#include <syslog.h>

extern int opt_stderr;
extern int opt_verbose;

#define init_logging() \
	do { \
		openlog("courierpasswd", LOG_PID, LOG_AUTHPRIV); \
	} while (0)

#define end_logging() \
	do { \
		closelog(); \
	} while (0)

#define logging(priority, msg, args...) \
	do { \
		if (opt_stderr) { \
			fprintf(stderr, msg, ##args); \
			fputc('\n', stderr);\
		} else { \
			syslog(priority, msg, ##args); \
		} \
	} while (0)

#define verbose(msg, args...) \
	do { \
		if (opt_verbose) { \
			fprintf(stderr, msg , ##args); \
			fputc('\n', stderr); \
		} \
	} while (0)

#endif /* LOGGING_H_ */