All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sttp.tapir.server.netty.internal.NettyDefaults.scala Maven / Gradle / Ivy

There is a newer version: 1.11.4
Show newest version
package sttp.tapir.server.netty.internal

import com.typesafe.scalalogging.Logger

object NettyDefaults {
  def debugLog(log: Logger, msg: String, exOpt: Option[Throwable]): Unit =
    exOpt match {
      case None     => log.debug(msg)
      case Some(ex) => log.debug(s"$msg; exception: {}", ex)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy