The request logging makes it clear which servlet is answering which request paths, which helps with route/filter debugging.
For example, I was able to see that TripServlet is in fact serving paths that should instead be routed to PlaceVisitParentServlet after querying the endpoint through curl:
[INFO] GCLOUD: INFO: TripServlet serving GET /api/trips/abc123/placeVisits
And some general cleanup.
The request logging makes it clear which servlet is answering which request paths, which helps with route/filter debugging.
For example, I was able to see that TripServlet is in fact serving paths that should instead be routed to
PlaceVisitParentServlet
after querying the endpoint through curl: