Skip to content

Commit caa59fb

Browse files
committed
Removed unnecessary logging.
1 parent a9d6a5a commit caa59fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/no/nav/klage/oppgave/clients/saf/graphql/SafGraphQlClient.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class SafGraphQlClient(
200200
fun <T> runWithTimingAndLogging(block: () -> T): T {
201201
val start = System.currentTimeMillis()
202202
try {
203-
return block.invoke().let { secureLogger.debug("Received response: {}", it); it }
203+
return block.invoke()
204204
} finally {
205205
val end = System.currentTimeMillis()
206206
logger.debug("Time it took to call saf: ${end - start} millis")

0 commit comments

Comments
 (0)