常见日志关闭

0

日志使用缓存系统关闭缓存里面的数据不能正常输出,需要我们手动关闭日志刷出缓存:

Log4j

LogManager.shutdown();

Logback

final LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();
context.stop();

SpringBoot

logging.level.root=OFF