mirror of
https://github.com/google/nomulus.git
synced 2025-05-12 22:38:16 +02: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:
parent
e3531e9f29
commit
1c8451fea1
3 changed files with 5 additions and 0 deletions
|
@ -62,6 +62,7 @@ public final class BackendServlet extends HttpServlet {
|
|||
|
||||
@Override
|
||||
public void service(HttpServletRequest req, HttpServletResponse rsp) throws IOException {
|
||||
logger.info("Received backend request");
|
||||
requestHandler.handleRequest(req, rsp);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue