All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.richfaces.log.LogFactory Maven / Gradle / Ivy

There is a newer version: 4.6.21.ayg
Show newest version
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2013, Red Hat, Inc. and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This 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 software 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 software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.richfaces.log;

/**
 * 

* This class produces loggers used by whole RichFaces library. *

* * @author [email protected] * */ public final class LogFactory { private static final Logger DEFAULT_LOGGER; private static final boolean isLog4JAvailable; static { boolean available; try { Class.forName("org.apache.log4j.Logger"); available = true; } catch (ClassNotFoundException cnfe) { available = false; } isLog4JAvailable = available; if (isLog4JAvailable) { DEFAULT_LOGGER = new Log4jLogger(); } else { DEFAULT_LOGGER = new JavaLogger(); } } private LogFactory() { // This class is not instantiable. } /** *

* This method creates default logger. *

* * @return Logger */ public static Logger getLogger() { return DEFAULT_LOGGER; } /** *

* This method produces logger instance for given category. *

* * @param category logger category * @return Logger */ public static Logger getLogger(String category) { if (isLog4JAvailable) { return new Log4jLogger(category); } return new JavaLogger(category); } public static Logger getLogger(Class clazz) { return getLogger(clazz.getName()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy