Package lumis.util.log
Class NavigationLogger
- java.lang.Object
-
- lumis.util.log.NavigationLogger
-
- All Implemented Interfaces:
INavigationLogger
- Direct Known Subclasses:
BannerLogger
public class NavigationLogger extends Object implements INavigationLogger
A logger to log the accesses in the W3C Extended format.This logger uses log4j, and the LumisNavigation category must be configured to use the
NavigationFileAppender
appender for proper file output format.
-
-
Field Summary
Fields Modifier and Type Field Description protected ILogger
navigationLogger
The logger where the navigation log messages are sent to.
-
Constructor Summary
Constructors Constructor Description NavigationLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
encodeToW3cLog(String pStr)
Encodes the String to a w3c log entry value.protected void
generateLogURI(HttpServletRequest request, StringBuilder logOutput, SessionConfig sessionConfig, PageConfig pageConfig, ITransaction transaction)
void
logAccess(HttpServletRequest request, SessionConfig sessionConfig, PageConfig pageConfig, ITransaction transaction)
Logs an entry in the navigation log with the access information relative to the given request.
-
-
-
Field Detail
-
navigationLogger
protected ILogger navigationLogger
The logger where the navigation log messages are sent to.
-
-
Method Detail
-
logAccess
public void logAccess(HttpServletRequest request, SessionConfig sessionConfig, PageConfig pageConfig, ITransaction transaction)
Description copied from interface:INavigationLogger
Logs an entry in the navigation log with the access information relative to the given request.- Specified by:
logAccess
in interfaceINavigationLogger
- Parameters:
request
- the request of the access to be logged.
-
generateLogURI
protected void generateLogURI(HttpServletRequest request, StringBuilder logOutput, SessionConfig sessionConfig, PageConfig pageConfig, ITransaction transaction)
-
-