mirror of
https://github.com/google/nomulus
synced 2026-08-19 05:36:11 +00:00
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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user