Change warning to info

This commit is contained in:
burke.davey
2011-05-12 21:28:19 +00:00
parent b8272b427e
commit 6f0d6f2030

View File

@@ -126,7 +126,7 @@ public class RequestInfo {
if (ri.userName == null) {
resp.setStatus(200);
resp.getWriter().println(LOGIN_REQUIRED_STATUS);
log.warning("Missing user");
log.info("Missing user, login required");
return null;
}