log
doobie.util.log
object log
A module of types and instances for logged statements.
Attributes
Members list
Grouped members
Handlers
object LogHandler
Module of instances and constructors for LogHandler.
Module of instances and constructors for LogHandler.
Attributes
- Companion
- trait
- Source
- log.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
LogHandler.type
Events
final case class ExecFailure(sql: String, params: Parameters, label: String, exec: FiniteDuration, failure: Throwable) extends LogEvent
sealed abstract class LogEvent extends Product, Serializable
Algebraic type of events that can be passed to a LogHandler
Algebraic type of events that can be passed to a LogHandler
Attributes
final case class ProcessingFailure(sql: String, params: Parameters, label: String, exec: FiniteDuration, processing: FiniteDuration, failure: Throwable) extends LogEvent
final case class Success(sql: String, params: Parameters, label: String, exec: FiniteDuration, processing: FiniteDuration) extends LogEvent
Type members
Classlikes
object LogEvent
object Parameters
Attributes
- Companion
- trait
- Source
- log.scala
- Supertypes
-
trait Sumtrait Mirrorclass Objecttrait Matchableclass Any
- Self type
-
Parameters.type
Parameters used in a query. For queries using batch arguments (e.g. updateMany) argument list is constructed lazily.
In this article