After the upgrade 2.1+ SpringBoot log output becomes small

The reason is that after SpringBoot2.1, adjusted Spring MVC or Spring WebFlux log level, so that the log output upgraded less, need to manually modify logging.level.web=debugspecific reference Spring-Boot-2.1-Release- Notes

Modify the configuration of log level as follows:

logging:
  level:
    web: trace #web: debug

This will print out the usual URL mapping relationship.

Guess you like

Origin www.cnblogs.com/HeCG95/p/11801910.html