Krishna - 2004-06-08

Hi,
We are using Log4plsql Background process to log for external appenders using log4j.
All the appenders are getting the messages if no threshold is not set.

In case threshold is set for the appenders, appenders are not getting the messages.

Levels in log4plsql using are
    10,'OFF'
    20,'FATAL'
    30,'ERROR'
    40,'WARN'
    50,'INFO'
    60,'DEBUG'
    70,'ALL'

which are different from Log4j

Log4j default level are :

    public final static int OFF_INT = Integer.MAX_VALUE;
    public final static int FATAL_INT = 50000;
    public final static int ERROR_INT = 40000;
    public final static int WARN_INT  = 30000;
    public final static int INFO_INT  = 20000;
    public final static int DEBUG_INT = 10000;
        //public final static int FINE_INT = DEBUG_INT;
    public final static int ALL_INT = Integer.MIN_VALUE;

And these are reverse orders also ( as compared with the levels log4plsql levels in the table).

Can we change the log4plsql level values in the table TLOGLEVEL with reverse order?