Github user vrozov commented on a diff in the pull request:
https://github.com/apache/incubator-apex-core/pull/162#discussion_r44946039
--- Diff:
engine/src/main/java/com/datatorrent/stram/stream/InlineStream.java ---
@@ -90,7 +91,7 @@ public void put(Object tuple)
@Override
public String toString()
{
- return "InlineStream{" + super.toString() + '}';
+ return getClass().getName() + '@' + Integer.toHexString(hashCode()) +
"{reservoir=" + getReservoir().toString() + '}';
--- End diff --
@tweise verbose code or verbose output? The verbose output is used for
logging and debugging.
---
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.
---