create

public static LogLevelMap create(Level level)

Returns an empty LogLevelMap with a single default level which will apply to all loggers.


public static LogLevelMap create(Map<String, ? extends Level> map)

Returns a LogLevelMap whose entries correspond to the given map, and with the default value of Level.OFF. The keys of the map must all be valid dot-separated logger names, and the values cannot be null.


public static LogLevelMap create(Map<String, ? extends Level> map, Level defaultLevel)

Returns a LogLevelMap whose entries correspond to the given map. The keys of the map must all be valid dot-separated logger names, and neither the values, nor the default value, can be null.