RE: [coldbox:12512] Re: Logbox question

Luis, I was thinking about this again today. Perhaps you can clear my mind and explain how LogBox came about it’s integer mappings for log levels.
Here are the values Log4J uses (These are static properties in the org.apache.log4j.Priority class):

OFF_INT = Integer.MAX_VALUE;
FATAL_INT = 50000;
ERROR_INT = 40000;
WARN_INT  = 30000;
INFO_INT  = 20000;
DEBUG_INT = 10000;
ALL_INT = Integer.MIN_VALUE;

LogBox doesn't have an "ALL" since that's sort of the default behavior, but it does seem that we did it backwards from them since their values get higher as the severity "increases" but ours get lower.

Thanks!

~Brad

In all reality brad I really thought I followed their spec on this but I guess not. Would a change like this affect us?