Logging for web-mvc controller requests or static files should appears with the HTTP method and path. This will make debugging easier in production and development environments.
<logger name="org.springframework.web" level="INFO"/>
INFO = 3 log lines with no useful information
DEBUG = 30 log lines, with little useful information
Expectation:
[time] GET /foobar?some=params
[time] Handled by FoobarController => someMethod(...)
Logging for web-mvc controller requests or static files should appears with the HTTP method and path. This will make debugging easier in production and development environments.
INFO = 3 log lines with no useful information
DEBUG = 30 log lines, with little useful information
Expectation: