Skip to content

Commit

Permalink
silence logging a bit, this info is in the access logs anyways
Browse files Browse the repository at this point in the history
  • Loading branch information
hennr committed Apr 15, 2024
1 parent 6dc9ff4 commit 8e3a3b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CctrayService(val githubClient: GithubClient) {
githubRepo: String,
githubWorkflowNameOrId: String
): Mono<String> {
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) {
Expand Down

0 comments on commit 8e3a3b8

Please sign in to comment.