Skip to content

Commit d09c7ba

Browse files
committed
Add a debug trace for indicating what SQL script is playing in the datasource migration
1 parent a767b1d commit d09c7ba

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/groovy/org/silverpeas/setup/migration/SQLScript.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class SQLScript extends AbstractScript {
5353
void run(Map<String, ?> args) throws SQLException {
5454
Sql sql = args.sql
5555
List<String> statements = loadSqlStatements()
56+
logger.debug " -> execute script ${script.name}..."
5657
sql.withBatch { batch ->
5758
statements.each {
5859
batch.addBatch(it)

0 commit comments

Comments
 (0)