Skip to content

Commit d7710b9

Browse files
kosmatyrnorth
authored andcommitted
fix #406 - script path is displayed in log message (#407)
1 parent 4641383 commit d7710b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/jdbc/src/main/java/org/testcontainers/jdbc/ext/ScriptUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public static void executeSqlScript(Connection connection, String scriptPath, St
246246

247247
try {
248248
if (LOGGER.isInfoEnabled()) {
249-
LOGGER.info("Executing SQL script from " + script);
249+
LOGGER.info("Executing SQL script from " + scriptPath);
250250
}
251251

252252
long startTime = System.currentTimeMillis();

0 commit comments

Comments
 (0)