This is an automated email from the ASF dual-hosted git repository.
amestry pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/master by this push:
new 2105d5a ATLAS-4151: FixedBufferList: Change Log Level to Debug
2105d5a is described below
commit 2105d5a2d15502e00eda8b1c657952f5ee96cb94
Author: Ashutosh Mestry <[email protected]>
AuthorDate: Tue Feb 9 09:08:54 2021 -0800
ATLAS-4151: FixedBufferList: Change Log Level to Debug
---
intg/src/main/java/org/apache/atlas/utils/FixedBufferList.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/intg/src/main/java/org/apache/atlas/utils/FixedBufferList.java
b/intg/src/main/java/org/apache/atlas/utils/FixedBufferList.java
index cf6ec02..d407151 100644
--- a/intg/src/main/java/org/apache/atlas/utils/FixedBufferList.java
+++ b/intg/src/main/java/org/apache/atlas/utils/FixedBufferList.java
@@ -70,7 +70,9 @@ public class FixedBufferList<T extends Clearable> {
this.buffer.ensureCapacity(newCapacity);
instantiateItems(oldCapacity, newCapacity);
- LOG.info("FixedBufferList: Requested: {} From: {} To:{}",
requestedCapacity, oldCapacity, newCapacity);
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("FixedBufferList: Requested: {} From: {} To:{}",
requestedCapacity, oldCapacity, newCapacity);
+ }
}
private void instantiateItems(int startIndex, int maxSize) {