Log flywaydb migrations

This commit is contained in:
eikek 2022-03-06 13:42:33 +01:00
parent d0805d133a
commit e6777df5f2
2 changed files with 2 additions and 1 deletions

View File

@ -22,8 +22,10 @@ object ScribeConfigure {
Sync[F].delay {
replaceJUL()
val docspellLogger = scribe.Logger("docspell")
val flywayLogger = scribe.Logger("org.flywaydb")
unsafeConfigure(scribe.Logger.root, cfg.copy(minimumLevel = getRootMinimumLevel))
unsafeConfigure(docspellLogger, cfg)
unsafeConfigure(flywayLogger, cfg)
}
private[this] def getRootMinimumLevel: Level =

View File

@ -38,7 +38,6 @@ object FlywayMigrate {
.locations(locations: _*)
.load()
fw.repair()
fw.migrate()
}
}