Refactor TestcontainersCassandraConfiguration class and fix Standard Output logging format specificier syntax error.

This commit is contained in:
John Blum
2023-05-12 18:21:25 -07:00
parent 12b62c92ea
commit dbea481990

View File

@@ -110,7 +110,7 @@ public class TestcontainersCassandraConfiguration extends TestCassandraConfigura
}
protected void logToSystemOut(String message, Object... arguments) {
System.out.printf("%s%n", arguments);
System.out.printf(message, arguments);
System.out.flush();
}