Re: making a wrapper for log4j

2001-09-05 Thread Don Taylor
Check out following link from the mail archives: http://marc.theaimsgroup.com/?l=log4j-user&m=99858973708304&w=2 --- "G.L. Grobe" <[EMAIL PROTECTED]> wrote: > I'm trying to put a wrapper around the Logging so that I won't have > to put log4j imports and declarations all over my code. I've heard

Re: making a wrapper for log4j

2001-09-05 Thread Naresh Sharma
Hello , Well i guess in this implementation code which will use your logging code has to make call like this in order to log the messages: Logger logger = new Logger("xyz"); Category cat = logger.getCat(); cat.debug("Hi, this is Debug"); ... I think better way to implement could be like this Cre

making a wrapper for log4j

2001-09-04 Thread G.L. Grobe
I'm trying to put a wrapper around the Logging so that I won't have to put log4j imports and declarations all over my code. I've heard of other doing this but I'm not exactly sure how so I was hoping I could get some pointers on what I've done so far.   Any help much appreciated.   packa