Package org.apache.turbine.services.logging

Examples of org.apache.turbine.services.logging.LoggingService


     * This is a log method with logLevel == WARN, printing is done by
     * the default logger
     */
    public static void warn(String message)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.warn(message);
    }
View Full Code Here


     * This is a log method with logLevel == WARN, printing is done by
     * the default logger
     */
    public static void warn(String message, Throwable t)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.warn(message, t);
    }
View Full Code Here

     * This is a log method with logLevel == WARN, printing is done by
     * the given logger
     */
    public static void warn(String logName, String message)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.warn(logName, message);
    }
View Full Code Here

     * This is a log method with logLevel == WARN, printing is done by
     * the given logger
     */
    public static void warn(String logName, String message, Throwable t)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.warn(logName, message, t);
    }
View Full Code Here

     * This is a log method with logLevel == WARN, printing is done by
     * the default logger
     */
    public static void warn(String message, RunData data)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.warn(message, data);
    }
View Full Code Here

     * This is a log method with logLevel == WARN, printing is done by
     * the default logger
     */
    public static void warn(String message, RunData data, Throwable t)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.warn(message, data, t);
    }
View Full Code Here

     * This is a log method with logLevel == WARN, printing is done by
     * the given logger
     */
    public static void warn(String logName, String message, RunData data)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.warn(logName, message, data);
    }
View Full Code Here

    public static void warn(String logName,
                            String message,
                            RunData data,
                            Throwable t)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.warn(logName, message, data, t);
    }
View Full Code Here

     * This is a log method with logLevel == ERROR, printing is done by
     * the default logger
     */
    public static void error(String message)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.error(message);
    }
View Full Code Here

     * This is a log method with logLevel == ERROR, printing is done by
     * the default logger
     */
    public static void error(String message, Throwable t)
    {
        LoggingService logger = (LoggingService)TurbineServices.getInstance()
            .getService(LoggingService.SERVICE_NAME);
        logger.error(message, t);
    }
View Full Code Here

TOP

Related Classes of org.apache.turbine.services.logging.LoggingService

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.