Re: Log4j 2 plugin in Scala

2015-05-28 Thread Gary Gregory
The answer would be the same for any Java code base that allows plugins via Class.forName(). This is question is not unique to Log4j as it does not know of anything else but the JRE and third party jars. I imagine the Scala code would have to make allowances for being instantiated from a POJO...

Re: Log4j 2 plugin in Scala

2015-05-28 Thread Ralph Goers
Does Scala support Annotations? Ralph On May 28, 2015, at 6:12 PM, Gary Gregory garydgreg...@gmail.com wrote: The answer would be the same for any Java code base that allows plugins via Class.forName(). This is question is not unique to Log4j as it does not know of anything else but the