001 package org.springframework.richclient.exceptionhandling; 002 003 /** 004 * This enum is not available in Logging commons, but it should be. 005 * @author Geoffrey De Smet 006 * @since 0.3 007 */ 008 public enum LogLevel { 009 010 TRACE, 011 DEBUG, 012 INFO, 013 WARN, 014 ERROR, 015 FATAL 016 017 }