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

--
Vladimir R. Bossicard
Apache Xindice - http://xml.apache.org/xindice




Reply via email to