We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Assuming the following code
case class Example(i: Int) extends Throwable { override def toString: String = s"$i" } val exampleObject = Example(3) logger.error(s"Example $exampleObject")
I would expect the message output to be
Example 3
Instead I get
Example {}