Github user revans2 commented on a diff in the pull request:
https://github.com/apache/storm/pull/2711#discussion_r196846579
--- Diff: storm-client/src/jvm/org/apache/storm/daemon/Task.java ---
@@ -112,15 +112,15 @@ public Task(Executor executor, Integer taskId) throws
IOException {
public List<Integer> getOutgoingTasks(Integer outTaskId, String
stream, List<Object> values) {
if (debug) {
LOG.info("Emitting direct: {}; {} {} {} ", outTaskId,
componentId, stream, values);
- }
--- End diff --
I think grouping check should happen even if debug is not enabled.
---