From 435bb3524178f7e1131d406bb70fb8271ad0ee2e Mon Sep 17 00:00:00 2001 From: ChidoW Date: Mon, 15 Jan 2024 15:36:32 +0200 Subject: [PATCH] small typo fix --- .../data/sql/postgres/PostgresDataBootstrapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JeMPI_Apps/JeMPI_Bootstrapper/src/main/java/org/jembi/jempi/bootstrapper/data/sql/postgres/PostgresDataBootstrapper.java b/JeMPI_Apps/JeMPI_Bootstrapper/src/main/java/org/jembi/jempi/bootstrapper/data/sql/postgres/PostgresDataBootstrapper.java index e2861a14b..a0ed29ab6 100644 --- a/JeMPI_Apps/JeMPI_Bootstrapper/src/main/java/org/jembi/jempi/bootstrapper/data/sql/postgres/PostgresDataBootstrapper.java +++ b/JeMPI_Apps/JeMPI_Bootstrapper/src/main/java/org/jembi/jempi/bootstrapper/data/sql/postgres/PostgresDataBootstrapper.java @@ -48,7 +48,7 @@ public Boolean createSchema() throws SQLException { String dbName = schemaDetails.dbName(); String dbSchemaFilePath = schemaDetails.schemaFilePath(); - LOGGER.info(String.format("---> Create schama for database %s", dbName)); + LOGGER.info(String.format("---> Create schema for database %s", dbName)); postgresDALLib.createDb(dbName);