Skip to content

Commit e3cbb69

Browse files
committed
minor change
1 parent 44662e3 commit e3cbb69

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

citydb-cli/src/main/java/org/citydb/cli/index/CreateIndexCommand.java

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
package org.citydb.cli.index;
2323

24+
import org.apache.logging.log4j.Level;
2425
import org.apache.logging.log4j.Logger;
2526
import org.citydb.cli.ExecutionException;
2627
import org.citydb.database.DatabaseManager;
@@ -57,6 +58,7 @@ public Integer call() throws ExecutionException {
5758
}
5859
}
5960

61+
helper.logIndexStatus(Level.INFO, databaseManager.getAdapter());
6062
return CommandLine.ExitCode.OK;
6163
}
6264
}

citydb-cli/src/main/java/org/citydb/cli/index/DropIndexCommand.java

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
package org.citydb.cli.index;
2323

24+
import org.apache.logging.log4j.Level;
2425
import org.apache.logging.log4j.Logger;
2526
import org.citydb.cli.ExecutionException;
2627
import org.citydb.database.DatabaseManager;
@@ -56,6 +57,7 @@ public Integer call() throws ExecutionException {
5657
}
5758
}
5859

60+
helper.logIndexStatus(Level.INFO, databaseManager.getAdapter());
5961
return CommandLine.ExitCode.OK;
6062
}
6163
}

0 commit comments

Comments
 (0)