Package org.apache.velocity.runtime.log

Examples of org.apache.velocity.runtime.log.Log.debug()


    protected final void debug(String msg, Object... args)
    {
        Log log = getLog();
        if (log != null && log.isDebugEnabled())
        {
            log.debug(String.format(msg, args));
        }
    }

    public ToolContext createContext()
    {
View Full Code Here


    protected final void debug(String msg, Object... args)
    {
        Log log = getLog();
        if (log != null && log.isDebugEnabled())
        {
            log.debug(String.format(msg, args));
        }
    }

    public ToolContext createContext()
    {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.