JDK 9 no longer available for download

2018-05-23 Thread Michael Schall
I am trying to build from source for some perf research, however one of the requirements is JDK9. This is no longer downloadable from Oracle ( http://www.oracle.com/technetwork/java/javase/downloads/jdk9-downloads-3848520.html) as it redirects you to JDK10. I'm sure this is not the "correct" way

Re: Extending Appenders

2014-09-02 Thread Michael Schall
an > > issue at work where error logs were emailed automatically, bringing down > > the mail server when the app kept generating the same error. Painful. > > > > > > Sent from my iPhone > > > > > >> On 2014/08/30, at 7:24, Michael Schall wrote: &g

Re: Extending Appenders

2014-08-29 Thread Michael Schall
14 at 4:51 PM, Remko Popma >> > wrote: >>> >>>> Looks like this class was made final in January 2013. The commit message >>>> mentions checkstyle errors. >>>> What change are you proposing? Would just removing the final keyword from >>>&g

Re: Extending Appenders

2014-08-29 Thread Michael Schall
inal, please > attach a patch with the changes you have in mind. > > > On Sat, Aug 30, 2014 at 4:07 AM, Michael Schall > wrote: > > > I'm upgrading an application to use Log4j2. With our existing > > implementation we have created a new appender which extends

Extending Appenders

2014-08-29 Thread Michael Schall
I'm upgrading an application to use Log4j2. With our existing implementation we have created a new appender which extends the SMTPAppender. I see the SMTPAppender is a final class now which prevents me from extending it. I was wondering what the reason for this is? Do we really need to re-imple