mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Fix log lines
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user