We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9d6a5a commit caa59fbCopy full SHA for caa59fb
src/main/kotlin/no/nav/klage/oppgave/clients/saf/graphql/SafGraphQlClient.kt
@@ -200,7 +200,7 @@ class SafGraphQlClient(
200
fun <T> runWithTimingAndLogging(block: () -> T): T {
201
val start = System.currentTimeMillis()
202
try {
203
- return block.invoke().let { secureLogger.debug("Received response: {}", it); it }
+ return block.invoke()
204
} finally {
205
val end = System.currentTimeMillis()
206
logger.debug("Time it took to call saf: ${end - start} millis")
0 commit comments