Community
Participate
Working Groups
Created attachment 180531 [details] Correction to Trace leve enumeration In org.eclipse.jst.server.tomcat.core.internal the Trace.java contains an enum which is incorrectly ordered based on the english written. This is corroborated in the String Array just beneath it. Attached is patch to fix this plus change the copyright date to 2010 due to this change. public static final byte SEVERE = 2; public static final byte FINEST = 3; public static final byte FINER = 4; ... private static final String[] levelNames = new String[] { "CONFIG ", "WARNING ", "SEVERE ", "FINER ", "FINEST "}; Should switch Finer and Finest values. public static final byte SEVERE = 2; public static final byte FINER = 3; public static final byte FINEST = 4;
This defect is no longer valid after the new trace work done in bug# 337907