diff --git a/src/main/java/biz/nynja/account/services/AccountServiceImpl.java b/src/main/java/biz/nynja/account/services/AccountServiceImpl.java index a300fb87feebb8d81370e7f79ec15aa91e092143..a3cd2a77b4467530239aca4efaf64ea5f6439c6a 100644 --- a/src/main/java/biz/nynja/account/services/AccountServiceImpl.java +++ b/src/main/java/biz/nynja/account/services/AccountServiceImpl.java @@ -421,7 +421,7 @@ public class AccountServiceImpl extends AccountServiceGrpc.AccountServiceImplBas @Permitted(role = RoleConstants.USER) public void getAccountByAccountId(AccountByAccountIdRequest request, StreamObserver responseObserver) { - logger.info("Getting accounts by account id: {}", request.getAccountId()); + logger.info("Getting account by account id: {}", request.getAccountId()); if ((request.getAccountId() == null) || (request.getAccountId().isEmpty())) { logAndBuildGrpcAccountResponse(responseObserver, AccountResponse.newBuilder(), "Missing account id", "", diff --git a/src/main/java/biz/nynja/account/services/decomposition/AccountProvider.java b/src/main/java/biz/nynja/account/services/decomposition/AccountProvider.java index e912b9c96fbb62bc4240ac0b7448110ce9231c19..0e5bd087ca0b14507469a98646be31415c51f53a 100644 --- a/src/main/java/biz/nynja/account/services/decomposition/AccountProvider.java +++ b/src/main/java/biz/nynja/account/services/decomposition/AccountProvider.java @@ -164,7 +164,6 @@ public class AccountProvider { } public Optional getAccountByAccountId(AccountByAccountIdRequest request) { - logger.info("Getting accounts by account id: {}", request.getAccountId()); Account account = accountRepository.findByAccountId(UUID.fromString(request.getAccountId())); if (account == null || account.getAccountId() == null) { return Optional.empty(); diff --git a/src/main/java/biz/nynja/account/services/decomposition/ProfileProvider.java b/src/main/java/biz/nynja/account/services/decomposition/ProfileProvider.java index 9c138bfb73fc3f8bb0f6de6fe0d9e367d40d70c9..a4436e304c112ac928ae8fd6bb181172bde898da 100644 --- a/src/main/java/biz/nynja/account/services/decomposition/ProfileProvider.java +++ b/src/main/java/biz/nynja/account/services/decomposition/ProfileProvider.java @@ -24,7 +24,6 @@ public class ProfileProvider { } public Optional getProfileByProfileId(ProfileByProfileIdRequest request) { - logger.info("Getting profile by profile id: {}", request.getProfileId()); Profile profile = profileRepository.findByProfileId(UUID.fromString(request.getProfileId())); if (profile == null || profile.getProfileId() == null) { return Optional.empty();