Skip to content

Commit

Permalink
[FFM-1014]: remove warning log for analytics ringBuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
rushabh-harness committed Jun 9, 2021
1 parent 6a85695 commit 2cd50ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.harness</groupId>
<artifactId>ff-java-server-sdk</artifactId>
<version>0.0.8</version>
<version>0.0.8.1</version>
<packaging>jar</packaging>
<name>Harness Feature Flag Java Server SDK</name>
<description>Harness Feature Flag Java Server SDK</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void pushToQueue(Target target, FeatureConfig featureConfig, Variation va
event.setTarget(analytics.getTarget());
event.setVariation(analytics.getVariation());
} catch (InsufficientCapacityException e) {
log.warn("Insufficient capacity in the analytics ringBuffer");
log.debug("Insufficient capacity in the analytics ringBuffer");
} finally {
if (sequence != -1) {
ringBuffer.publish(sequence);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void run() {
Analytics event = ringBuffer.get(sequence); // Get the entry in the Disruptor for the sequence
event.setEventType(EventType.TIMER);
} catch (InsufficientCapacityException e) {
log.warn("Insufficient capacity in the analytics ringBuffer");
log.debug("Insufficient capacity in the analytics ringBuffer");
} finally {
if (sequence != -1) {
ringBuffer.publish(sequence);
Expand Down

0 comments on commit 2cd50ac

Please sign in to comment.