mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Fix log lines
This commit is contained in:
parent
ed778639a8
commit
ec278ffe0a
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ public class HealthCheckHandler extends AbstractHandler {
|
|||
HttpServletResponse response
|
||||
) throws IOException {
|
||||
if ("GET".equals(baseRequest.getMethod()) && "/health_check".equals(target)) {
|
||||
Log.info("GET <- /api/health_check");
|
||||
Log.info("GET <- /health_check");
|
||||
baseRequest.setHandled(true);
|
||||
response.setContentType("text/plain");
|
||||
if (bridge.healthCheck()) {
|
||||
|
|
|
@ -29,7 +29,7 @@ public class StatusHandler extends AbstractHandler {
|
|||
HttpServletResponse response
|
||||
) throws IOException {
|
||||
if ("GET".equals(baseRequest.getMethod()) && "/status".equals(target)) {
|
||||
Log.info("GET <- /api/status");
|
||||
Log.info("GET <- /status");
|
||||
baseRequest.setHandled(true);
|
||||
response.setContentType("text/plain");
|
||||
response.setStatus(200);
|
||||
|
|
Loading…
Reference in a new issue