I am creating an admin page which has a couple of logback properties that I want to set on the fly, one of them being the admin emails that I send system alerts to. The api for the SMTPAppender
has the methods to add to the list of "to" addresses, or get them as a list, but I didn't find anything to clear, remove any or update them. How should I do this?
I see two options currently:
- One option is to remove the appender and create a new one with the new properties (yuck).
- Figure out how to configure this directly through Joran (maybe yuck?).
I'm moving forward with (2), but please post if there's a better way.
Maybe you're done with this, but I just needed to find a way to set dynamic "to" addresses, and this topic lead me to the way (thanks to @gresdiplitude idea on system properties and MDC values), so I'm sharing my solution.
I am using
SMTPAppender
to send small execution reports, but those need to be sent to different mailboxes. The solution looks yuck-less, or at least I got very pleased with the result.My logback.xml:
MyFilter.java:
MyDiscriminator.java:
MyConverter.java:
MyMarker.java:
I just created an implementation for
MyMarker
, and used several instances of it on every logging statement that should be reported:Hope it can be useful.