2 * gw-log.h: Logging facilities.
4 * Europagate, 1994-1995.
7 * Revision 1.4 1995/03/27 12:50:40 adam
8 * New level: GW_LOG_ERRNO.
10 * Revision 1.3 1995/02/23 08:32:11 adam
13 * Revision 1.1.1.1 1995/02/09 17:27:12 adam
14 * Initial version of email gateway under CVS control.
16 * Initial: Dec 7, 94 (Adam Dickmeiss)
21 /* The log level is an unsigned integer value with at least 16 bits */
23 /* The log levels are defined below */
24 #define GW_LOG_FATAL 0x01
25 #define GW_LOG_WARN 0x02
26 #define GW_LOG_ACCT 0x04
27 #define GW_LOG_STAT 0x08
28 #define GW_LOG_ERRNO 0x10
30 /* All debug levels */
31 #define GW_LOG_DEBUG 0xfff0
32 /* Individual debug levels, x sould be in range 0-10 */
33 #define GW_LOG_DEBUGN(x) (0x20<<(x))
35 /* All levels on / All levels except debugging */
36 #define GW_LOG_ALL 0xffff
37 #define GW_LOG_DEFAULT 0x0f
39 void gw_log_init (const char *app_name);
41 Initialises the log-system. Application name is given by 'app_name' -
42 could be specified as argv[0]. The application name should not
45 All log messages are directed to stderr on return from this function.
46 Override this behaviour by using the gw_log_file function.
48 The log level is set to GW_LOG_DEFAULT. Override this with the
49 gw_log_level function.
51 The session id is set to 0. Use gw_log_session to change this.
54 void gw_log_level (unsigned level);
56 Sets the log to 'level' by using the GW_LOG_xxxx masks as described
60 void gw_log_session (int session);
62 Sets the session id to 'session'.
65 int gw_log_file (unsigned level, const char *fname);
67 Specifies that output given by 'level' should be appended to file 'fname'.
68 Thus, all log messages can be written to one file or several files.
69 If 'level' is GW_LOG_ALL all output is appended to the same file.
70 If 'fname' is NULL it means that the output is written to stderr.
71 If 'fname' is "" it means the output is written to stdout.
73 This function returns 0 on success; -1 on failure.
76 int gw_log (unsigned level, const char *event_type, const char *format, ...);
78 Append log message to one or more files. The value of parameter
79 'level' and the value given by the last gw_log_level call are bitwise
80 AND'ed. This value represents the log level for this message.
81 If this value is non-zero the 'event_type' and 'format' are used to
82 create the log entries which are appended to the log files specified by
83 the gw_log_file call(s).
85 The 'event_type' should not contain blanks.
86 This function returns 0 on success; -1 on failure.
89 char *gw_strdup (const char *s);
91 Works as strdup(3s), which is not defined by ANSI.
96 <appname> <session> <date> <level> <type> <parameter>
98 Assuming that a 'token' is separated by one or more blanks we have:
102 <date> one token yymmddhhmmss
106 <parameter> zero or more tokens.