org.rythmengine.logger.CommonsLoggerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rythm-engine Show documentation
Show all versions of rythm-engine Show documentation
A strong typed high performance Java Template engine with .Net Razor like syntax
/**
* Copyright (C) 2013-2016 The Rythm Engine project
* for LICENSE and other details see:
* https://github.com/rythmengine/rythmengine
*/
package org.rythmengine.logger;
import org.rythmengine.extension.ILoggerFactory;
/**
* Created with IntelliJ IDEA.
* User: luog
* Date: 25/11/13
* Time: 10:50 AM
* To change this template use File | Settings | File Templates.
*/
public class CommonsLoggerFactory implements ILoggerFactory {
@Override
public ILogger getLogger(Class> clazz) {
return new CommonsLogger(clazz);
}
}