KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > logging > log4j > Log4jPriority


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

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 JavaDoc strLevel, int syslogEquiv) {
31         super(level, strLevel, syslogEquiv);
32     }
33
34 }
35
Popular Tags