Skip to content

Commit

Permalink
Issue 1500 use the built-in formatting in logging methods - remove un…
Browse files Browse the repository at this point in the history
…necessary space between logs
  • Loading branch information
Bremys committed Oct 17, 2019
1 parent 9641e02 commit b352e10
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ public void testUpdateUserAccountDetails()
assertThat(addedEntity).as("Unable to locate user " + testUserName + ". Save operation failed!").isNotNull();

logger.debug("Found stored user\n\t{}\n", addedEntity);

logger.debug("Updating user...");

UserDto userUpdate = new UserDto();
Expand Down Expand Up @@ -281,7 +280,6 @@ public void testDeleteUser()
assertThat(addedEntity).as("Unable to locate user " + testUserName + ". Delete operation failed!").isNotNull();

logger.debug("Found stored user\n\t{}\n", addedEntity);

logger.debug("Deleting user...");

userService.deleteByUsername(testUserName);
Expand Down

0 comments on commit b352e10

Please sign in to comment.