Github user ahgittin commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/90#discussion_r57858123
--- Diff:
core/src/main/java/org/apache/brooklyn/core/mgmt/internal/LocalSubscriptionManager.java
---
@@ -143,6 +143,9 @@ public void run() {
if (s.eventFilter!=null &&
!s.eventFilter.apply(event))
return;
try {
+ int count = s.eventCount.incrementAndGet();
+ if (count > 0 && count % 1000 == 0)
LOG.debug("{} events for subscriber {}", count, s);
--- End diff --
will always be > 0 due to line above
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---