services/billing-azure/src/main/java/com/epam/datalab/billing/azure/config/LoggingConfigurationFactory.java [129:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void configure() throws InitializationException {
        if (appenders == null) {
            throw new InitializationException("Configuration property logging.appenders cannot be null.");
        }
        LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();
        context.reset();

        for (AppenderBase appender : appenders) {
            appender.configure(context);
        }

        Logger logger = context.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME);
        logger.setLevel(level);
        for (String name : loggers.keySet()) {
            logger = context.getLogger(name);
            logger.setLevel(loggers.get(name));
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



services/billing-aws/src/main/java/com/epam/datalab/configuration/LoggingConfigurationFactory.java [133:150]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void configure() throws InitializationException {
        if (appenders == null) {
            throw new InitializationException("Configuration property logging.appenders cannot be null.");
        }
        LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();
        context.reset();

        for (AppenderBase appender : appenders) {
            appender.configure(context);
        }

        Logger logger = context.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME);
        logger.setLevel(level);
        for (String name : loggers.keySet()) {
            logger = context.getLogger(name);
            logger.setLevel(loggers.get(name));
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



