Skip to content

Commit

Permalink
update: flyway-core 8.0.2 -> 8.5.13, requires NOTICE log level (#1953)
Browse files Browse the repository at this point in the history
Pull request: #1953
  • Loading branch information
James authored Jul 17, 2022
1 parent 8c516f1 commit 170188a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ object Deps {
val bloopConfig = ivy"ch.epfl.scala::bloop-config:1.5.2"
val coursier = ivy"io.get-coursier::coursier:2.1.0-M6"

val flywayCore = ivy"org.flywaydb:flyway-core:8.0.2"
val flywayCore = ivy"org.flywaydb:flyway-core:8.5.13"
val graphvizJava = ivy"guru.nidi:graphviz-java-all-j2v8:0.18.1"
val junixsocket = ivy"com.kohlschutter.junixsocket:junixsocket-core:2.5.1"

Expand Down
4 changes: 4 additions & 0 deletions contrib/flyway/src/ConsoleLog.scala
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ class ConsoleLog(val level: ConsoleLog.Level.Level) extends Log {
System.out.println("WARNING: " + message)
}

override def notice(message: String): Unit = {
System.err.println("NOTICE: " + message)
}

override def error(message: String): Unit = {
System.err.println("ERROR: " + message)
}
Expand Down

0 comments on commit 170188a

Please sign in to comment.