Skip to content

Commit

Permalink
Fix application log
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesarnal committed Jan 18, 2024
1 parent 4040274 commit b315fbb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private void generateCustomers() {
protected void generateCustomer() throws InterruptedException {
CustomerEntity customer = new CustomerEntity();
String email = UUID.randomUUID() + "@apicurio.io";
log.info("Generating customer with email: {}", customer.getEmail());
log.info("Generating customer with email: {}", email);
customer.setEmail(email);
customer.setFirstName(UUID.randomUUID().toString());
customer.setLastName(UUID.randomUUID().toString());
Expand Down

0 comments on commit b315fbb

Please sign in to comment.