Skip to content

Commit

Permalink
added count while reading pipe to debug checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sonalgoyal committed Oct 9, 2024
1 parent 5eca717 commit 435f32b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ public ZFrame<D,R,C> readInternal(boolean addExtraCol, boolean addLineNo,
for (Pipe p : pipes) {
if (input == null) {
input = readInternal(p, addSource);
LOG.debug("input size is " + input.count());
if (LOG.isDebugEnabled()) {
LOG.debug("input size is " + input.count());
}
} else {
if(!addExtraCol) {
input = input.union(readInternal(p, addSource));
Expand Down

0 comments on commit 435f32b

Please sign in to comment.