fix: downgrade successful log ingestion message to DEBUG
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m26s
CI / docker (push) Successful in 1m6s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 38s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-12 15:29:38 +02:00
parent e55ee93dcf
commit 2d3817b296

View File

@@ -88,7 +88,7 @@ public class LogIngestionController {
log.warn("Log buffer full: accepted={}, dropped={} from instance={}, app={}",
accepted, dropped, instanceId, applicationId);
} else {
log.info("Accepted {} log entries from instance={}, app={}", accepted, instanceId, applicationId);
log.debug("Accepted {} log entries from instance={}, app={}", accepted, instanceId, applicationId);
}
return ResponseEntity.accepted().build();