Re: SLF4J 1.8 and SLF4J 2.0

2022-08-26 Thread Remko Popma
Agree, makes sense. > On Aug 27, 2022, at 7:50, Gary Gregory wrote: > > Makes sense. > > Gary > >> On Fri, Aug 26, 2022, 15:55 Ralph Goers wrote: >> >> Ceki never released a GA version of SLF4J 1.8. Since we are adding >> support for SLF4J 2.0 in the next release I would suggest we also

Re: SLF4J 1.8 and SLF4J 2.0

2022-08-26 Thread Gary Gregory
Makes sense. Gary On Fri, Aug 26, 2022, 15:55 Ralph Goers wrote: > Ceki never released a GA version of SLF4J 1.8. Since we are adding > support for SLF4J 2.0 in the next release I would suggest we also remove > log4j-slf4j18-impl. > > Ralph

Re: timestamp and thread name in StatusLogger

2022-08-26 Thread Ralph Goers
It does need to be optional. If you are running your app as a service on Linux/Unix the logs will already contain a timestamp because they get routed to the system log. So having a timestamp in them makes them ugly for that case. Ralph > On Aug 26, 2022, at 5:39 AM, Gary Gregory wrote: > > I'

SLF4J 1.8 and SLF4J 2.0

2022-08-26 Thread Ralph Goers
Ceki never released a GA version of SLF4J 1.8. Since we are adding support for SLF4J 2.0 in the next release I would suggest we also remove log4j-slf4j18-impl. Ralph

Re: timestamp and thread name in StatusLogger

2022-08-26 Thread Ralph Goers
StatusLogger either uses SimpleLogger or StatusConsoleListener to print the log messages. If StatusConsoleListener is registered then it does print the date and thread name. When no listeners are registered SimpleLogger is used. If System Property log4j2.StatusLogger.DateFormat is defined the

Re: timestamp and thread name in StatusLogger

2022-08-26 Thread Gary Gregory
I've found that odd myself just like Maven output does not contain timestamps, might be for "simplest possible output". I'm all for adding these. Gary On Fri, Aug 26, 2022, 03:36 Volkan Yazıcı wrote: > Is there any particular reason we don't render the timestamp and thread > name in StatusLogge

timestamp and thread name in StatusLogger

2022-08-26 Thread Volkan Yazıcı
Is there any particular reason we don't render the timestamp and thread name in StatusLogger?