From 8e3a3b8e5ed15bcb89b4feceb10f4cf64cac9e95 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Peters Date: Mon, 15 Apr 2024 14:09:47 +0200 Subject: [PATCH] silence logging a bit, this info is in the access logs anyways --- .../name/hennr/cctrayhub/cctray/controller/CctrayService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/name/hennr/cctrayhub/cctray/controller/CctrayService.kt b/src/main/kotlin/name/hennr/cctrayhub/cctray/controller/CctrayService.kt index c5f245d..96af560 100644 --- a/src/main/kotlin/name/hennr/cctrayhub/cctray/controller/CctrayService.kt +++ b/src/main/kotlin/name/hennr/cctrayhub/cctray/controller/CctrayService.kt @@ -17,7 +17,7 @@ class CctrayService(val githubClient: GithubClient) { githubRepo: String, githubWorkflowNameOrId: String ): Mono { - logger.info("requested repo: $githubGroup/$githubRepo/$githubWorkflowNameOrId") + logger.debug("requested repo: $githubGroup/$githubRepo/$githubWorkflowNameOrId") return githubClient.getWorkflowRuns(githubGroup, githubRepo, githubWorkflowNameOrId).map { // (cached) success http code from github && at least one existent run for the requested branch (already) if ((it.githubResponseCode == SUCCESS || it.githubResponseCode == CACHED) && it.latestWorkflowRun != null) {