[ANNOUNCEMENT] Apache Log4j 2.12.0 released

2019-06-29 Thread Ralph Goers
The Apache Log4j 2 team is pleased to announce the Log4j 2.12.0 release! Apache Log4j is a well known framework for logging application behavior. Log4j 2 is an upgrade to Log4j that provides significant improvements over its predecessor, Log4j 1.x, and provides many other modern features such as

Re: [Discuss] Release Log4j 2.12.0-rc2

2019-06-29 Thread Matt Sicker
Even better! Thanks. On Sat, Jun 29, 2019 at 11:47, Ralph Goers wrote: > Umm. The release went live last night so there can’t be more release > candidates. > > Ralph > > > On Jun 29, 2019, at 9:31 AM, Matt Sicker wrote: > > > > I can update it, yes, but I don’t think it’s warrant for another re

Re: Is Log4Net project abandoned?

2019-06-29 Thread Kabilan VK
The last commit was on 2017 so, its becoming a less favor to new startup projects. I tried to contribute by adding latest .net framework support so, at least need a PR review support to get this on track. Thanks for understanding. Regards, Kabilan On Sat, 29 Jun, 2019, 4:31 AM Jochen Wiedmann, w

Re: [Discuss] Release Log4j 2.12.0-rc2

2019-06-29 Thread Ralph Goers
Umm. The release went live last night so there can’t be more release candidates. Ralph > On Jun 29, 2019, at 9:31 AM, Matt Sicker wrote: > > I can update it, yes, but I don’t think it’s warrant for another release > candidate. > > On Sat, Jun 29, 2019 at 10:31, Gary Gregory wrote: > >> On Fr

Re: Do I need to clear programmatic loggers/appenders

2019-06-29 Thread Matt Sicker
If you’re making loggers per user, for example, that might make more sense as thread context data. On Sat, Jun 29, 2019 at 06:11, Dominik Psenner wrote: > Creating this many appenders is troublesome also for any operating system > because the number of open (file) handles is limited. A little bi

Re: [Discuss] Release Log4j 2.12.0-rc2

2019-06-29 Thread Matt Sicker
I can update it, yes, but I don’t think it’s warrant for another release candidate. On Sat, Jun 29, 2019 at 10:31, Gary Gregory wrote: > On Fri, Jun 28, 2019 at 11:32 AM Matt Sicker wrote: > > > Ok, I see that it's already tested right there. Then it really is safe > > to add an assumeThat() to

Re: [Discuss] Release Log4j 2.12.0-rc2

2019-06-29 Thread Gary Gregory
On Fri, Jun 28, 2019 at 11:32 AM Matt Sicker wrote: > Ok, I see that it's already tested right there. Then it really is safe > to add an assumeThat() to the test that uses reflection to access the > deprecated API. That test can be safely ignored once the deprecated > API is removed since we alre

Re: Is Log4Net project abandoned?

2019-06-29 Thread Jochen Wiedmann
On Sat, Jun 29, 2019 at 1:21 PM Dominik Psenner wrote: > We could also push log4net back to incubation. What do you think? If availability of people is an issue, then this would be an excellent way of exhausting those even more. Jochen

Re: Is Log4Net project abandoned?

2019-06-29 Thread Dominik Psenner
Hey, Thanks Matt for providing feedback on the project. I am better at the moment but still have hard limits in place regarding the time I spend in front of computers because it does me good. Given the limited resources I am donating to the project there won't be noticable progress in the foresee

Re: Do I need to clear programmatic loggers/appenders

2019-06-29 Thread Dominik Psenner
Creating this many appenders is troublesome also for any operating system because the number of open (file) handles is limited. A little bit old anf thus possibly outdated but still provides insights into windows specific details and highlights some corner stones for orientation: https://blogs.tec

Re: Do I need to clear programmatic loggers/appenders

2019-06-29 Thread Jochen Wiedmann
You are creating millions of loggers? Meaning either of - I have a million different logger Id's, and create a logger for every single one, or - I have a limited number of different logger Id's, but invoke LoggerContext.getLogger(String), or LogManager.getLogger(String), or something similar, wi