Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-02

weblogic.logging.log4j
Class WLLog4jLevel

java.lang.Object
  extended by org.apache.log4j.Priority
      extended by org.apache.log4j.Level
          extended by weblogic.logging.log4j.WLLog4jLevel
All Implemented Interfaces:
Serializable

public class WLLog4jLevel
extends Level

This class enumerates the Log4j logging levels. It defines a mapping between the Log4j Level and Severities classes.

See Also:
Severities, Level, Serialized Form

Field Summary
static WLLog4jLevel ALERT
          Log4j level for Alert severity.
static int ALERT_INT
          Integer constant for the ALERT level.
static WLLog4jLevel CRITICAL
          Log4j level for Critical severity.
static int CRITICAL_INT
          Integer constant for the CRITICAL level.
static WLLog4jLevel EMERGENCY
          Log4j level for Emergency severity.
static int EMERGENCY_INT
          Integer constant for the EMERGENCY level.
static WLLog4jLevel NOTICE
          Log4j level for Notice severity.
static int NOTICE_INT
          Integer constant for the NOTICE level.
static WLLog4jLevel TRACE
          Log4j level for Trace severity.
static int TRACE_INT
          Integer constant for the TRACE level.
 
Fields inherited from class org.apache.log4j.Level
ALL, DEBUG, ERROR, FATAL, INFO, OFF, WARN
 
Fields inherited from class org.apache.log4j.Priority
ALL_INT, DEBUG_INT, ERROR_INT, FATAL_INT, INFO_INT, OFF_INT, WARN_INT
 
Method Summary
static Level getLevel(int severity)
          Converts a severity code to a corresponding Level object.
static int getSeverity(Level level)
          Maps a Level object to an severity code.
static Level toLevel(String sArg)
          Convert the string passed as an argument to a Level.
static Level toLevel(String sArg, Level defaultValue)
           
 
Methods inherited from class org.apache.log4j.Level
toLevel, toLevel
 
Methods inherited from class org.apache.log4j.Priority
equals, getAllPossiblePriorities, getSyslogEquivalent, isGreaterOrEqual, toInt, toPriority, toPriority, toPriority, toPriority, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

EMERGENCY_INT

public static final int EMERGENCY_INT
Integer constant for the EMERGENCY level.

See Also:
Constant Field Values

ALERT_INT

public static final int ALERT_INT
Integer constant for the ALERT level.

See Also:
Constant Field Values

CRITICAL_INT

public static final int CRITICAL_INT
Integer constant for the CRITICAL level.

See Also:
Constant Field Values

NOTICE_INT

public static final int NOTICE_INT
Integer constant for the NOTICE level.

See Also:
Constant Field Values

TRACE_INT

public static final int TRACE_INT
Integer constant for the TRACE level.

See Also:
Constant Field Values

EMERGENCY

public static final WLLog4jLevel EMERGENCY
Log4j level for Emergency severity.


ALERT

public static final WLLog4jLevel ALERT
Log4j level for Alert severity.


CRITICAL

public static final WLLog4jLevel CRITICAL
Log4j level for Critical severity.


NOTICE

public static final WLLog4jLevel NOTICE
Log4j level for Notice severity.


TRACE

public static final WLLog4jLevel TRACE
Log4j level for Trace severity.

Method Detail

toLevel

public static Level toLevel(String sArg)
Convert the string passed as an argument to a Level. If the conversion fails, return an INFO level.


toLevel

public static Level toLevel(String sArg,
                            Level defaultValue)

getSeverity

public static int getSeverity(Level level)
Maps a Level object to an severity code.


getLevel

public static Level getLevel(int severity)
Converts a severity code to a corresponding Level object.


Copyright 1996, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-02