In general, JSP logging is not recommended. But if you really want to do this, try this,
Logger log = Logger.getLogger ("loggedin.jsp");
Assuming the JSP file name is loggedin.jsp, but you can specify any meaningful name to distinguish the log data.
source share