Re: ConfigurationBuilder in Programmatic Configuration

2019-11-01 Thread Ralph Goers
ConfiguratoinBiulder will create a full configuration. If you want to merge it with a configuration generated from a file you could use a CompositeConfiguration. In that case you would do something like: List list = new ArrayList<>(); list.add(ctx.getConfiguration()); // Get existing file-base

ConfigurationBuilder in Programmatic Configuration

2019-11-01 Thread Fred Eisele
ref: https://logging.apache.org/log4j/2.x/manual/customconfig.html#ConfigurationBuilder The ConfigurationBuilder is demonstrated in [ * https://logging.apache.org/log4j/2.x/manual/customconfig.html#Example * https://logging.apache.org/log4j/2.x/manual/customconfig.html#Configurator ] but not in [