Print different statements in different logger
Initially posted in this topic
Hi
For example, I want different loggers purpose wise. Please refer to the below section.
private static final Logger LOGGER = LogManager.getLogger(LoggerExample.class );
private static final Logger LOGGER_PRE = LogManager.getLogger("LoggerExample_Pre");
private static final Logger LOGGER_SUMMARY = LogManager.getLogger("LoggerExample_Summary");
private static final Logger LOGGER_POST = LogManager.getLogger("LoggerExample_Post");
private static final Logger LOGGER_ERROR = LogManager.getLogger("LoggerExample_Error");

