add some debug logs

This commit is contained in:
Roberto Cirillo 2023-02-17 10:01:57 +01:00
parent 8aa338a5b6
commit d1d2d667e0
1 changed files with 2 additions and 0 deletions

View File

@ -126,6 +126,7 @@ public class ServiceEndpointResource {
}
private ServiceEndpoint decryptResource(ServiceEndpoint resource) {
log.debug("encrypting serviceEndpoint {} ", resource.id());
Group<ServiceEndpoint.AccessPoint> aps=resource.profile().accessPoints();
for (ServiceEndpoint.AccessPoint ap : aps){
String decrypted =decryptString(ap.password());
@ -137,6 +138,7 @@ public class ServiceEndpointResource {
}
private ServiceEndpoint encryptResource(ServiceEndpoint resource) {
log.debug("encrypting serviceEndpoint {} ", resource.id());
Group<ServiceEndpoint.AccessPoint> aps=resource.profile().accessPoints();
for (ServiceEndpoint.AccessPoint ap : aps){
String decrypted =encryptString(ap.password());