add debug log line

This commit is contained in:
Roberto Cirillo 2021-09-22 10:20:00 +02:00
parent dde4ff1fa8
commit b63ad74730
1 changed files with 5 additions and 4 deletions

View File

@ -340,11 +340,12 @@ public class StorageIDResolver {
* @return the storage client instance * @return the storage client instance
*/ */
protected static IClient getStorageClientInstance(MemoryType memory) { protected static IClient getStorageClientInstance(MemoryType memory) {
if ((!Objects.isNull(storageManagerClient)) && (storageManagerClient.getGcubeMemoryType().equals(memory))) if ((!Objects.isNull(storageManagerClient)) && (storageManagerClient.getGcubeMemoryType().equals(memory))) {
LOG.debug("reusing the same storage-client object");
return storageManagerClient; return storageManagerClient;
else { }else {
if(!Objects.isNull(storageManagerClient)) { if(!Objects.isNull(storageManagerClient)) {
LOG.debug("going to close an old storage-client instance"); LOG.debug("going to close an old storage-client instance on "+storageManagerClient.getGcubeMemoryType());
try { try {
storageManagerClient.forceClose(); storageManagerClient.forceClose();
LOG.debug("storage-client closed"); LOG.debug("storage-client closed");
@ -352,7 +353,7 @@ public class StorageIDResolver {
LOG.warn("Some problem occurred during the close operation:"+e.getMessage()+" Going to open another connection"); LOG.warn("Some problem occurred during the close operation:"+e.getMessage()+" Going to open another connection");
} }
} }
LOG.debug("initializing a new storage-client instance"); LOG.debug("initializing a new storage-client instance on "+memory);
storageManagerClient=new StorageClient(StorageIDResolver.class.getName(), StorageIDResolver.class.getSimpleName(), STORAGEID_RESOLVER, STORAGE_ACCESS_TYPE, memory, STORAGE_BACKEND_TYPE).getClient(); storageManagerClient=new StorageClient(StorageIDResolver.class.getName(), StorageIDResolver.class.getSimpleName(), STORAGEID_RESOLVER, STORAGE_ACCESS_TYPE, memory, STORAGE_BACKEND_TYPE).getClient();
return storageManagerClient; return storageManagerClient;
} }