Skip to content

Commit

Permalink
Imporved logger
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagocordeiro committed Sep 15, 2024
1 parent 50267f0 commit 248fc04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/io/tcds/orm/connection/ConnectionLogger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface ConnectionLogger {
}

private fun params(params: List<Param<*>>): String {
val list = params.mapIndexed { index, it -> "$index: ${it.name} = ${it.value}" }
val list = params.mapIndexed { index, it -> "$index: ${it.name} = ${it.plain()}" }

return "\n\t" + list.joinToString("\n\t")
}
Expand Down

0 comments on commit 248fc04

Please sign in to comment.