Java slf4j Logger dumpConfiguration(Map map, Logger log)

Here you can find the source of dumpConfiguration(Map map, Logger log)

Description

dump Configuration

License

Apache License

Declaration

public static void dumpConfiguration(Map<String, String> map, Logger log) 

Method Source Code


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

import org.slf4j.Logger;
import java.util.Map;

public class Main {
    public static void dumpConfiguration(Map<String, String> map, Logger log) {
        log.trace("Starting connector with configuration:");
        for (Map.Entry entry : map.entrySet()) {
            log.trace("{}: {}", entry.getKey(), entry.getValue());
        }//  w w  w  .  j a va  2s .  co m
    }
}

Related

  1. countMSCandidates_m2(ArrayList asHexAL)
  2. d d(String fmt, Object... args)
  3. debug(Logger logger, Exception e)
  4. debug(Logger logger, String format, Object... arguments)
  5. displayProperties(Logger log, Properties prop)
  6. error(Class clz, String logStr, Throwable e)
  7. error(final BundleContext b, final String msg, final Throwable t)
  8. error(Logger log, String fmt, String... args)
  9. error(Logger logger, Exception e)