com.openhtmltopdf.util.LoggerUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
/*
* {{{ header & license
* LoggerUtil.java
* Copyright (c) 2004, 2005 Patrick Wright
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* }}}
*/
package com.openhtmltopdf.util;
import java.util.logging.*;
/**
* Utility class for working with java.logging Logger classes
*
* @author Patrick Wright
*/
public class LoggerUtil {
/**
* Instantiate a Logger for debug messages for a given class.
*
* @param cls PARAM
* @return The debugLogger value
*/
public static Logger getDebugLogger( Class> cls ) {
Logger l = Logger.getLogger( cls.getName() );
l.setLevel( Level.ALL );
return l;
}
public static Level parseLogLevel(String val, Level defaultLogLevel) {
switch (val) {
case "ALL": return Level.ALL;
case "CONFIG": return Level.CONFIG;
case "FINE": return Level.FINE;
case "FINER": return Level.FINER;
case "FINEST": return Level.FINEST;
case "INFO": return Level.INFO;
case "OFF": return Level.OFF;
case "SEVERE": return Level.SEVERE;
case "WARNING": return Level.WARNING;
default: return defaultLogLevel;
}
}
}
/*
* $Id$
*
* $Log$
* Revision 1.4 2008/01/27 16:40:29 pdoubleya
* Issues 186 and 130: fix configuration so that logging setup does not override any current settings for JDK logging classes. Disable logging by default.
*
* Revision 1.3 2005/01/29 20:19:27 pdoubleya
* Clean/reformat code. Removed commented blocks, checked copyright.
*
* Revision 1.2 2004/10/23 14:06:57 pdoubleya
* Re-formatted using JavaStyle tool.
* Cleaned imports to resolve wildcards except for common packages (java.io, java.util, etc).
* Added CVS log comments at bottom.
*
*
*/