mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#543 - Tidy up test logging - adjust test LoggedSqlCollector - remove logging noise when running tests
This commit is contained in:
@@ -32,10 +32,9 @@ public class TestQueryFetchSkipPath extends BaseTestCase {
|
||||
Customer customer = order.getCustomer();
|
||||
List<Contact> contacts = customer.getContacts();
|
||||
for (Contact contact : contacts) {
|
||||
System.out.println("contact:" + contact);
|
||||
List<ContactNote> notes = contact.getNotes();
|
||||
for (ContactNote contactNote : notes) {
|
||||
System.out.println("note:" + contactNote.getTitle());
|
||||
contactNote.getTitle();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user