X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=appc-core%2Fappc-common-bundle%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Fpool%2FCachedElement.java;h=093ce10bcd55ab88cadfab2f4f4923a0b8e4a5e0;hb=3ac3a0198de40e83f0c1a45468f84870c08019b8;hp=e9b2ffeae774a1722b66c1e814c1f1e994f3a8e8;hpb=e87a189e91adfa04482363a9057c4a24fe1b03bd;p=appc.git diff --git a/appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/CachedElement.java b/appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/CachedElement.java index e9b2ffeae..093ce10bc 100644 --- a/appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/CachedElement.java +++ b/appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/CachedElement.java @@ -6,6 +6,8 @@ * ================================================================================ * Copyright (C) 2017 Amdocs * ============================================================================= + * Modifications Copyright (C) 2019 IBM + * ============================================================================= * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -29,6 +31,8 @@ import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; import java.util.concurrent.atomic.AtomicBoolean; +import com.att.eelf.configuration.EELFLogger; +import com.att.eelf.configuration.EELFManager; /** * This class is used as a "wrapper" for any closeable elements that are cached in a pool. It is @@ -42,6 +46,7 @@ import java.util.concurrent.atomic.AtomicBoolean; public class CachedElement implements Closeable, InvocationHandler, CacheManagement { + private static final EELFLogger LOG = EELFManager.getInstance().getLogger(CachedElement.class); /** * The pool that is managing this cached element @@ -116,7 +121,7 @@ public class CachedElement try { pool.release((T) this); } catch (PoolDrainedException e) { - e.printStackTrace(); + LOG.error("Pool is empty", e); } }