Skip to content

Commit 305542b

Browse files
authored
feat(server): log each action request (#1382)
Part of #1318.
1 parent a968bb2 commit 305542b

File tree

1 file changed

+2
-0
lines changed
  • jit-binding-server/src/main/kotlin/io/github/typesafegithub/workflows/jitbindingserver

1 file changed

+2
-0
lines changed

jit-binding-server/src/main/kotlin/io/github/typesafegithub/workflows/jitbindingserver/Main.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package io.github.typesafegithub.workflows.jitbindingserver
22

33
import io.github.reactivecircus.cache4k.Cache
44
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.ActionCoords
5+
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.prettyPrint
56
import io.github.typesafegithub.workflows.mavenbinding.Artifact
67
import io.github.typesafegithub.workflows.mavenbinding.JarArtifact
78
import io.github.typesafegithub.workflows.mavenbinding.TextArtifact
@@ -39,6 +40,7 @@ fun main() {
3940
name = name,
4041
version = version,
4142
)
43+
println("➡️ Requesting ${actionCoords.prettyPrint}")
4244
val bindingArtifacts =
4345
if (bindingsCache.get(actionCoords) != null) {
4446
bindingsCache.get(actionCoords)!!

0 commit comments

Comments
 (0)