I only suggested the package approach because it looked like that was what was 
being done currently. I'm much more in favor of a class.getName() approach 
(that's what I normally do). If this is more appropriate, I'd be happy to 
re-submit the patch with that.

If this isn't a welcome change right now, OK. I'll find something else to fix 
:-)

--Kevin
On Tuesday 19 November 2002 04:25 am, Vladimir R. Bossicard wrote:
> >>LogFactory.getLog(SymbolSerializer.class.getPackage().getName());
>
> -1 on this one.
>
> CLASS.class.getPackage().getName() only returns the package's name,
> without the classname.
>
> One solution would be
>
>     LogFactory.getLog(CLASS.class)
>
> One idea was to have different granularities : one single logger for the
> client side and several, finer loggers for the server side.
>
> I'm not a logger pro so I'm open to suggestions. But it's low low on my
> todo list :-)
>
> -Vladimir

Reply via email to