Skip to content

Commit

Permalink
Fix missing index log formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tapac committed Feb 20, 2022
1 parent 9c5bfb6 commit 5b7e2e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ object SchemaUtils {
private fun checkMissingIndices(vararg tables: Table, withLogs: Boolean): List<Index> {
fun Collection<Index>.log(mainMessage: String) {
if (withLogs && isNotEmpty()) {
exposedLogger.warn(joinToString(prefix = "$mainMessage\t\t", separator = "\t\t"))
exposedLogger.warn(joinToString(prefix = "$mainMessage\n\t\t", separator = "\n\t\t"))
}
}

Expand Down

0 comments on commit 5b7e2e3

Please sign in to comment.