Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

server.log full of same warning /rest/notifications #3679

MFalkner ·
My server log shows this warning every minute, is there a way to find out what is causing it?
Due to this, I tend to miss important logs as they are flushed out before I see them.

2016-12-21 07:04:23,439 [qtp209900359-24] WARN org.eclipse.jetty.servlet.ServletHandler - /rest/notifications
com.pmease.quickbuild.QuickbuildException: Error processing authentication request from 193.8.186.43: user name should not be empty
at com.pmease.quickbuild.security.SecurityHelper.authenticate(SecurityHelper.java:405)
at com.pmease.quickbuild.security.SecurityHelper.authenticate(SecurityHelper.java:698)
at com.pmease.quickbuild.rest.RestServlet.service(RestServlet.java:40)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:669)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1336)
at com.pmease.quickbuild.Quickbuild$DisableTraceFilter.doFilter(Quickbuild.java:1057)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1307)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:453)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:229)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1072)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:382)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1006)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:154)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
at org.eclipse.jetty.server.Server.handle(Server.java:365)
at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:485)
at org.eclipse.jetty.server.BlockingHttpConnection.handleRequest(BlockingHttpConnection.java:53)
at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:926)
at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:988)
at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:635)
at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235)
at org.eclipse.jetty.server.BlockingHttpConnection.handle(BlockingHttpConnection.java:72)
at org.eclipse.jetty.server.bio.SocketConnector$ConnectorEndPoint.run(SocketConnector.java:264)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)
at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)
at java.lang.Thread.run(Unknown Source)
  • replies 4
  • views 873
  • stars 0
robinshen ADMIN ·
A program running at ip "193.8.186.43" and it is authenticating to QB using http basic. However the user name specified in the BASIC authentication header is empty. Please either specify an user name/password, or remove the http basic authentication header.
MFalkner ·
Now this is embarrassing, I should have seen this myself.
Thanks, for your help.
MFalkner ·
Is there a way to disable this message by setting a particular log level to FATAL only?
I've tried "log4j.logger.com.pmease.quickbuild.rest.providers=FATAL" as suggested in another thread, but this seems not to help in this case.
robinshen ADMIN ·
Use below instead:
log4j.logger.org.eclipse.jetty.servlet.ServletHandler=ERROR