Package com.liferay.portal.kernel.log

Examples of com.liferay.portal.kernel.log.Log.debug()


    if (serviceReference != null) {
      message += " " + serviceReference.toString();
    }

    if ((level == LogService.LOG_DEBUG) && log.isDebugEnabled()) {
      log.debug(message, logEntry.getException());
    }
    else if ((level == LogService.LOG_ERROR) && log.isErrorEnabled()) {
      log.error(message, logEntry.getException());
    }
    else if ((level == LogService.LOG_INFO) && log.isInfoEnabled()) {
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.