-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariable.lisp
51 lines (46 loc) · 1.14 KB
/
variable.lisp
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
;;;; $Id: variable.lisp,v 1.1 2003/11/13 18:32:45 eenge Exp $
;;;; $Source: /project/cl-syslog/cvsroot/cl-syslog/variable.lisp,v $
;;;; See the LICENSE file for licensing information.
(in-package :syslog)
(defparameter *priorities*
'((:emerg . 0)
(:alert . 1)
(:crit . 2)
(:err . 3)
(:warning . 4)
(:notice . 5)
(:info . 6)
(:debug . 7)))
(defparameter *facilities*
'((:kern . 0)
(:user . 1)
(:mail . 2)
(:daemon . 3)
(:auth . 4)
(:syslog . 5)
(:lpr . 6)
(:news . 7)
(:uucp . 8)
(:cron . 9)
(:authpriv . 10)
(:ftp . 11)
(:local0 . 16)
(:local1 . 17)
(:local2 . 18)
(:local3 . 19)
(:local4 . 20)
(:local5 . 21)
(:local6 . 22)
(:local7 . 23)))
(defconstant +log-pid+ #x01
"Log the pid with each message.")
(defconstant +log-cons+ #x02
"Log on the console if errors in sending.")
(defconstant +log-odelay+ #x04
"Delay open until first syslog() (default).")
(defconstant +log-ndelay+ #x08
"Don't delay open.")
(defconstant +log-nowait+ #x10
"Don't wait for console forks: deprecated.")
(defconstant +log-perror+ #x20
"Log to stderr as well.")