Skip to content

Commit f05a302

Browse files
authored
ApiObject Forward log changed to debug in order to not clutter the log console
1 parent 2e09c7f commit f05a302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/main/java/com/genexus/filters/APIObjectFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void doFilter(IServletRequest request, IServletResponse response, IFilte
4444
if ( qString != null && !qString.isEmpty()) {
4545
fwdURI = fwdURI + QS_SEP + qString;
4646
}
47-
logger.info("Forwarding from " + path +" to: " + fwdURI) ;
47+
logger.debug("Forwarding from " + path +" to: " + fwdURI) ;
4848
httpRequest.getRequestDispatcher(fwdURI).forward(request,response);
4949
}
5050
else {

0 commit comments

Comments
 (0)