Whats the best way to add log4j logging to a jsp tag file.. I've got as far as importing the logger class..
<%@ tag import="org.apache.log4j.Logger" %>
But having a bit of trouble initialising the logger object.
<% Logger log = Logger.getLogger("xxx.xxx.xxx.xx"); %>
Because I'm using a tag file with a .tag extension, what do I put is as the class reference to it in the getLogger method call above?
I don't fancy pluging in the log4j taglib at this stage.
Thanks for looking.