Re: PatternLayout Log4j2

2020-02-27 Thread Matt Sicker
One thing to keep in mind is that unless you’re willing to keep updating code based on internal changes, you shouldn’t be creating plugin objects directly from their builder classes or factory methods. The programmatic config has a few examples in our unit tests. On Thu, Feb 27, 2020 at 09:38 EDMO

Re: PatternLayout Log4j2

2020-02-27 Thread EDMONDO SENA
I saw it but not everything in that examples is clear to me... On 2020/02/27 15:33:56, Matt Sicker wrote: > http://logging.apache.org/log4j/2.x/manual/customconfig.html > > > On Thu, Feb 27, 2020 at 09:32 EDMONDO SENA wrote: > > > > > Is it possible to do it in java code without configurat

Re: PatternLayout Log4j2

2020-02-27 Thread Matt Sicker
http://logging.apache.org/log4j/2.x/manual/customconfig.html On Thu, Feb 27, 2020 at 09:32 EDMONDO SENA wrote: > > Is it possible to do it in java code without configuration file? > > > > On 2020/02/27 15:28:26, Ralph Goers wrote: > > Why are you using the PatternLayout with the SyslogAppender

Re: PatternLayout Log4j2

2020-02-27 Thread EDMONDO SENA
Is it possible to do it in java code without configuration file? On 2020/02/27 15:28:26, Ralph Goers wrote: > Why are you using the PatternLayout with the SyslogAppender? If you replace > the Layout it will no longer be sending data in accordance with the Syslog > spec. Why are you doing

Re: PatternLayout Log4j2

2020-02-27 Thread Ralph Goers
Why are you using the PatternLayout with the SyslogAppender? If you replace the Layout it will no longer be sending data in accordance with the Syslog spec. Why are you doing this programmatically instead of using a configuration file? Ralph > On Feb 27, 2020, at 8:25 AM, EDMONDO SENA wrot

Re: PatternLayout Log4j2

2020-02-27 Thread EDMONDO SENA
I've used: Call -> final Builder builder2 = newSyslogAppenderBuilder(protocol, format, newLine); protected static Builder newSyslogAppenderBuilder(final String protocol,final String format,final boolean newLine) return Syslog4jAppenderLI.newSyslogAppenderBuilder() .wi

Re: PatternLayout Log4j2

2020-02-27 Thread Ralph Goers
I am not sure what you mean by “regular expression” with regards to the PatternLayout as it doesn’t use regular expressions. Have you tried the same pattern? My guess is it should do the same thing Log4j 1 did. Ralph > On Feb 27, 2020, at 2:25 AM, EDMONDO SENA wrote: > > > Hi Everybody, >