Skip to content

Commit af1c636

Browse files
committed
feat: update log level
Signed-off-by: Otavio Santana <[email protected]>
1 parent cb64bc3 commit af1c636

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jnosql-nosql-oracle/src/main/java/org/eclipse/jnosql/databases/oracle/communication/TableCreationConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ record TableCreationConfiguration(int readLimit,
3636

3737
public void createTable(String tableName, NoSQLHandle serviceHandle){
3838
String table = String.format(CREATE_TABLE, tableName);
39-
LOGGER.info("starting the bucket manager, creating a table Running query: " + table);
39+
LOGGER.fine("starting the bucket manager, creating a table Running query: " + table);
4040
TableRequest tableRequest = new TableRequest().setStatement(table);
4141
tableRequest.setTableLimits(new TableLimits(this.readLimit, this.writeLimit, this.storageGB));
4242
TableResult tableResult = serviceHandle.tableRequest(tableRequest);

0 commit comments

Comments
 (0)