Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
/**
* @return will return you the logger instance that can statically imported in your classes.
*/
public static Logger Logger() {
return requestLogInfoThreadLocal.getLogger();
public static org.slf4j.Logger Logger(Class<?> clazz) {
return LoggerFactory.getLogger(clazz);
}

}
Expand Down