Skip to content

Commit 16c95d4

Browse files
author
Sagar Sane
committed
#2 : Updates the debug statement to only write out the node name and not the whole node
1 parent 09ea779 commit 16c95d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/com/twcable/grabbit/server/batch/steps/jcrnodes/JcrNodesWriter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class JcrNodesWriter implements ItemWriter<NodeProtos.Node>, ItemWriteListener {
4141
if (servletOutputStream == null) throw new IllegalStateException("servletOutputStream must be set.")
4242

4343
nodeProtos.each { NodeProtos.Node node ->
44-
log.debug "Sending NodeProto : ${node}"
44+
log.debug "Sending NodeProto : ${node.name}"
4545
node.writeDelimitedTo(servletOutputStream)
4646
}
4747
}

0 commit comments

Comments
 (0)