Package cn.com.byd.support.impl

Examples of cn.com.byd.support.impl.Log


    /**
     * 获取日志输出类
     * @return
     */
    public ILogger getLogger() {
        return new Log();
    }
View Full Code Here


     * 获取日志输出类
     * @param clazz
     * @return
     */
    public ILogger getLogger(Class clazz) {
        return new Log(clazz.getName());
    }
View Full Code Here

     * @param clazz
     * @param resouceBoudle
     * @return
     */
    public ILogger getLogger(Class clazz, String resouceBoudle) {
        return new Log(clazz.getName(), resouceBoudle);
    }
View Full Code Here

TOP

Related Classes of cn.com.byd.support.impl.Log

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.