Skip to content

Commit

Permalink
Revert "fix: change format for logMessage mkString (#2219)"
Browse files Browse the repository at this point in the history
This reverts commit 119e485.
  • Loading branch information
patriknw committed Oct 10, 2024
1 parent 8514e27 commit f5ee08a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ class DiscoveryImpl(
val detail = if (in.detail.isEmpty) Nil else List(in.detail)
val seeDocs = DocLinks(sdkName).forErrorCode(in.code).map(link => s"See documentation: $link").toList
val messages = message :: detail ::: seeDocs ::: sourceMsgs
val logMessage = messages.mkString("\t|\t")
val logMessage = messages.mkString("\n\n")

// ignoring waring for runtime version
// TODO: remove it once we remove this check in the runtime
Expand Down

0 comments on commit f5ee08a

Please sign in to comment.