Log the first entry into our code per request

Trying to debug the 20s delay in requests, it would help to know if the delay
happens before or after our code is called.

Right now all we know is that the delay happens before our first loggin line,
which is in RequestAuthenticator.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=182211285
This commit is contained in:
guyben 2018-01-17 07:28:47 -08:00 committed by Ben McIlwain
parent e3531e9f29
commit 1c8451fea1
3 changed files with 5 additions and 0 deletions

View file

@ -62,6 +62,7 @@ public final class FrontendServlet extends HttpServlet {
@Override
public void service(HttpServletRequest req, HttpServletResponse rsp) throws IOException {
logger.info("Received frontend request");
requestHandler.handleRequest(req, rsp);
}
}