Unsubscribe by mailing dev-unsubscr...@logging.apache.org
On Fri, 17 Jan 2020 at 13:05, Valentina Ichimov wrote:
>
> Please unsubscribe me from here
>
> Thanks
>
> În vin., 17 ian. 2020 la 8:45 p.m. Gary Gregory a
> scris:
>
> > On Fri, Jan 17, 2020 at 10:01 AM Gary Gregory
> > wrote:
> >
> > >
Please unsubscribe me from here
Thanks
În vin., 17 ian. 2020 la 8:45 p.m. Gary Gregory a
scris:
> On Fri, Jan 17, 2020 at 10:01 AM Gary Gregory
> wrote:
>
> > Does this help:
> https://logging.apache.org/log4j/2.x/manual/layouts.html
> >
>
> But basically you cannot collapse the 2 since you wa
On Fri, Jan 17, 2020 at 10:01 AM Gary Gregory
wrote:
> Does this help: https://logging.apache.org/log4j/2.x/manual/layouts.html
>
But basically you cannot collapse the 2 since you want to be able to
pretty- vs. compact-print AND you want to terminate the whole thing with an
optional NUL.
Gary
On Fri, Jan 17, 2020 at 12:50 PM Matt Sicker wrote:
> On Fri, 17 Jan 2020 at 07:44, Volkan Yazıcı
> wrote:
> > (Sorry for spamming the list. Is there a FreeNode channel or sth
> > similar where I can direct my questions to?)
>
> I believe this is exactly the purpose of the dev@ mailing list. Tho
On Fri, 17 Jan 2020 at 07:44, Volkan Yazıcı wrote:
> (Sorry for spamming the list. Is there a FreeNode channel or sth
> similar where I can direct my questions to?)
I believe this is exactly the purpose of the dev@ mailing list. Though
there's a logging Slack channel on the-asf.
--
Matt Sicker
On Fri, Jan 17, 2020 at 2:10 PM Volkan Yazıcı wrote:
> Isn't it possible to combine this into a single "String eol"?
Sounds reasonable, except that one should use a byte array, rather
that a string, shouldn't one?
Jochen
Does this help: https://logging.apache.org/log4j/2.x/manual/layouts.html
Gary
On Fri, Jan 17, 2020 at 8:44 AM Volkan Yazıcı
wrote:
> Gary, would you mind explaining the interaction between the following
> fields, please?
>
> boolean eventEol (What does this denote?)
> String endOfLine
Let me add header/footer getters to the list of components whose
interaction is still mysterious for me.
On Fri, Jan 17, 2020 at 2:45 PM Volkan Yazıcı wrote:
>
> Gary, would you mind explaining the interaction between the following
> fields, please?
>
> boolean eventEol (What does this denote
Gary, would you mind explaining the interaction between the following
fields, please?
boolean eventEol (What does this denote?)
String endOfLine
boolean compact
String eol
boolean includeNullDelimiter
At first, I thought "compact" is just used to enable pretty-printing,
but th
On Fri, Jan 17, 2020 at 8:16 AM Ralph Goers
wrote:
> Makes sense to me.
>
Not to me ;-)
The optional NULL is to end an event. An EOL is to end a line when you are
not using a compact format.
Gary
>
> Ralph
>
> > On Jan 17, 2020, at 6:11 AM, Volkan Yazıcı
> wrote:
> >
> > Jackson layouts acce
Makes sense to me.
Ralph
> On Jan 17, 2020, at 6:11 AM, Volkan Yazıcı wrote:
>
> Jackson layouts accept the following two parameters:
>
>String eol
>boolean includeNullDelimiter
>
> Their purpose is simple:
>
>logEvent(event);
>writer.write(eol);
>if (includeNullDelimiter
Jackson layouts accept the following two parameters:
String eol
boolean includeNullDelimiter
Their purpose is simple:
logEvent(event);
writer.write(eol);
if (includeNullDelimiter) {
writer.write('\0');
}
Isn't it possible to combine this into a single "String eol"
12 matches
Mail list logo