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
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
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