Java slf4j Logger debug(Logger logger, String format, Object... arguments)

Here you can find the source of debug(Logger logger, String format, Object... arguments)

Description

debug

License

Apache License

Declaration

public static void debug(Logger logger, String format, Object... arguments) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import org.slf4j.Logger;

public class Main {
    public static void debug(Logger logger, String format, Object... arguments) {
        if (logger.isDebugEnabled()) {
            logger.debug(format, arguments);
        }/*w  w w.j  av  a2  s.  c  o m*/
    }
}

Related

  1. configureXWikiLogs()
  2. countMSCandidates(byte[] byteARR)
  3. countMSCandidates_m2(ArrayList asHexAL)
  4. d d(String fmt, Object... args)
  5. debug(Logger logger, Exception e)
  6. displayProperties(Logger log, Properties prop)
  7. dumpConfiguration(Map map, Logger log)
  8. error(Class clz, String logStr, Throwable e)
  9. error(final BundleContext b, final String msg, final Throwable t)