in log4j-api-scala_3/src/main/scala/org/apache/logging/log4j/scala/Logger.scala [420:442]
inline def traceEntry(): EntryMessage =
delegate.traceEntry()
/**
* Logs entry to a method along with its parameters.
*
* {{{
* def doSomething(foo: String, bar: Int): Unit = {
* logger.traceEntry(foo, bar)
* // do something
* }
* }}}
*
* @param params the parameters to the method.
* @return The built `EntryMessage`
*/
inline def traceEntry(inline params: AnyRef*): EntryMessage = {
if (params.isEmpty) {
delegate.traceEntry()
} else {
delegate.traceEntry(params.head.toString, params.tail:_*)
}
}