Skip to content

Commit

Permalink
Add log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Oct 6, 2023
1 parent c878c92 commit 558970e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ trait BaseIntegrationTest extends AnyFunSuite with BeforeAndAfterAll with LazyLo
def prepareExasolDatabase(schemaName: String): Unit = {
executeStmt(s"DROP SCHEMA IF EXISTS $schemaName CASCADE;")
factory = new ExasolObjectFactory(getConnection())
logger.info("Creating schema " + schemaName)
schema = factory.createSchema(schemaName)
createImportDeploymentScripts()
createExportDeploymentScripts()
Expand Down Expand Up @@ -117,6 +118,7 @@ trait BaseIntegrationTest extends AnyFunSuite with BeforeAndAfterAll with LazyLo

private[this] def uploadJarToBucket(): Unit = {
val jarPath = Paths.get("target", assembledJarName)
logger.info("Uploading JAR " + jarPath + " to bucket " + assembledJarName + "...")
exasolContainer.getDefaultBucket.uploadFile(jarPath, assembledJarName)
}

Expand Down

0 comments on commit 558970e

Please sign in to comment.