Releases: arkanovicz/webapp-slf4j-logger
webapp-slf4j-logger v3.0
Major upgrade: switch to slf4j 2.x.
webapp-slf4j-logger v2.4
Maintenance release.
Upgrade simple-mailer to 1.4
webapp-slf4j-logger v2.2
When email notifications are active, stop trying to connect to the smtp server after three attempts.
v2.1
Maintenance release.
Fix smtp loop.
v2.0
Rework the email notification mechanism, to allow for an authentication against the SMTP server.
v1.6
This feature adds a new stack trace elements stripping option, to strip out classical and verbose locations from error stack traces.
v1.5.2
Added the valid value false
for the webapp-slf4j-logger.notification
initialization parameter.
This is for instance useful if you are generating your webapp descriptor with the maven resource plugin, and need to only activate email notifications under certain profiles.
v1.5.1
Update dependencies versions:
- slf4j updated to 1.7.30
- servlets API updated to 3.1.0
v1.5
Rendering now drops empty MDC tags (with their surrounding spaces and decorators among [ ]
, { }
, < >
...).
v1.4 - allow explicit level configuration using name prefix
Loggers loglevel can now be specified using a prefix of the logger name, for instance:
<context-param>
<param-name>webapp-slf4j-logger.org.apache.commons.level</param-name>
<param-value>info</param-value>
</context-param>
will configure the level of all org.apache.commons loggers.