Re: markers

2015-09-17 Thread Mikael Ståldal
Android have these levels ( http://developer.android.com/reference/android/util/Log.html): ERROR WARN INFO DEBUG VERBOSE Adding VERBOSE above DEBUG would be inconsistent with Android and thus confusing. On Thu, Sep 17, 2015 at 12:24 AM, Gary Gregory wrote: > At first I

RE: markers

2015-09-16 Thread Nicholas Duane
I was hoping on getting some replies to my last message as I'm trying to figure out the best way to utilize the existing logging frameworks, log4j(2) and log4net in our case, to log our business events and ensure the business events flow to the correct destination. I think the two main

Re: markers

2015-09-16 Thread Gary Gregory
At first I was going to strongly recommend against using a custom level called BUSINESS. Custom levels have been a problem in the past at my work (IMO). Markers are really a perfect fit for this use-case. That got me to thinking about my previous idea on this of adding more levels to Log4j. Please

RE: markers

2015-09-16 Thread Nicholas Duane
ogger() log() method. That in addition to log4net not supporting markers is making this a less viable option. Thanks, Nick > Date: Wed, 16 Sep 2015 15:24:20 -0700 > Subject: Re: markers > From: garydgreg...@gmail.com > To: log4j-user@logging.apache.org > > At first I was going t

Re: markers

2015-09-16 Thread Ralph Goers
I actually haven’t looked at log4net, but since it predates Log4j 2 I would imagine it is missing the new features we added. Using your own custom messages is certainly a viable approach. But there again, logging Message objects instead of simple strings is something that was introduced by