File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
tests/objectbox-java-test/src/test/java/io/objectbox Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,15 @@ protected BoxStore createBoxStore(boolean withIndex) {
82
82
83
83
protected BoxStoreBuilder createBoxStoreBuilderWithTwoEntities (boolean withIndex ) {
84
84
BoxStoreBuilder builder = new BoxStoreBuilder (createTestModelWithTwoEntities (withIndex )).directory (boxStoreDir );
85
+ builder .debugFlags (DebugFlags .LOG_TRANSACTIONS_READ | DebugFlags .LOG_TRANSACTIONS_WRITE );
85
86
builder .entity (new TestEntity_ ());
86
87
builder .entity (new TestEntityMinimal_ ());
87
88
return builder ;
88
89
}
89
90
90
91
protected BoxStoreBuilder createBoxStoreBuilder (boolean withIndex ) {
91
92
BoxStoreBuilder builder = new BoxStoreBuilder (createTestModel (withIndex )).directory (boxStoreDir );
93
+ builder .debugFlags (DebugFlags .LOG_TRANSACTIONS_READ | DebugFlags .LOG_TRANSACTIONS_WRITE );
92
94
builder .entity (new TestEntity_ ());
93
95
return builder ;
94
96
}
You can’t perform that action at this time.
0 commit comments