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

leap.lang.logging.LogFactory Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package leap.lang.logging;

import leap.lang.Strings;

public final class LogFactory {
	
	private static final boolean slf4j;
	private static final StdLog  std;
	
	static {
		slf4j = slf4j();
		
		String lvName = System.getProperty("app.stdlog.level");
		if(Strings.isEmpty(lvName)){
			lvName = "warn";
		}
		LogLevel lv = LogLevel.byName(lvName);
		std = new StdLog(lv);
	}

	public static Log get(String name) {
		return slf4j ? getSlf4jLogger(name) : std;
	}
	
	public static Log get(Class clazz) {
		return slf4j ? getSlf4jLogger(clazz) : std;
	}
	
	private static Log getSlf4jLogger(String name){
		return new SlfLog(org.slf4j.LoggerFactory.getLogger(name));
	}
	
	private static Log getSlf4jLogger(Class clazz){
		return new SlfLog(org.slf4j.LoggerFactory.getLogger(clazz));
	}
	
	private static boolean forName(String className) {
		ClassLoader cl = null;
		try {
			cl = Thread.currentThread().getContextClassLoader();
		} catch (Throwable ex) {
		}
		if (cl == null) {
			cl = LogFactory.class.getClassLoader();
		}
		try {
	        return null != cl.loadClass(className);
        } catch (Throwable e) {
        	return false;
        }
	}

    private static boolean slf4j() {
        boolean slf4j = forName("org.slf4j.impl.StaticLoggerBinder");

        if(slf4j) {
            SlfLog.init();
        }

        return slf4j;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy