Skip to content

Commit

Permalink
Remove unnecessary println
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristianrosland committed Feb 22, 2024
1 parent d04129d commit c2aa1cd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/kotlin/no/digipost/github/monitoring/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,7 @@ suspend fun main(): Unit = coroutineScope {

val apolloClientFactory = cachedApolloClientFactory(githubToken)
val githubApiClient = GithubApiClient(githubToken)
val slackClient = slackWebhookUrl?.let{
println("Opprettet slack-klient")
SlackClient(it)
}
val slackClient = slackWebhookUrl?.let{ SlackClient(it) }

launch {
while (isActive) {
Expand Down

0 comments on commit c2aa1cd

Please sign in to comment.