01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10:
11: /*
12: This software is OSI Certified Open Source Software.
13: OSI Certified is a certification mark of the Open Source Initiative.
14:
15: The license (Mozilla version 1.0) can be read at the MMBase site.
16: See http://www.MMBase.org/license
17:
18: */
19:
20: package org.mmbase.util.logging.log4j;
21:
22: /**
23: *
24: * @author Michiel Meeuwissen
25: * @deprecated use Log4jLevel
26: **/
27:
28: public class Log4jPriority extends Log4jLevel {
29:
30: protected Log4jPriority(int level, String strLevel, int syslogEquiv) {
31: super(level, strLevel, syslogEquiv);
32: }
33:
34: }
|