Skip to content

Commit b33d914

Browse files
authored
LMDB: remove logValues and enable lmdb gc on init (#5309)
2 parents e7a6498 + d265fb1 commit b33d914

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

core/sail/lmdb/src/main/java/org/eclipse/rdf4j/sail/lmdb/ValueStore.java

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,8 @@ class ValueStore extends AbstractValueFactory {
235235
return null;
236236
});
237237

238-
if (logger.isDebugEnabled()) {
239-
// trigger deletion of values marked for GC
240-
startTransaction(true);
241-
commit();
242-
// print current values in store
243-
logValues();
244-
}
238+
startTransaction(true);
239+
commit();
245240
}
246241

247242
private void logValues() throws IOException {

0 commit comments

Comments
 (0)