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

scalikejdbc.LoggingSQLAndTimeSettings.scala Maven / Gradle / Ivy

There is a newer version: 4.3.2
Show newest version
package scalikejdbc

/**
 * Settings for logging SQL and timing
 */
case class LoggingSQLAndTimeSettings(
  enabled: Boolean = true,
  singleLineMode: Boolean = false,
  printUnprocessedStackTrace: Boolean = false,
  stackTraceDepth: Int = 15,
  logLevel: String = "debug",
  warningEnabled: Boolean = false,
  warningThresholdMillis: Long = 3000L,
  warningLogLevel: String = "warn",
  maxColumnSize: Option[Int] = Some(100),
  maxBatchParamSize: Option[Int] = Some(20)
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy