final long start = System.currentTimeMillis();
NodeIterator nodes = node.getNodes();
final long end = System.currentTimeMillis();
log("ListTreeCommand.child -> "+node.getPath(), start, end);
while (nodes.hasNext()) {
Node childNode = nodes.nextNode();
// TODO - this should not be needed if we obey the vlt filters
if (childNode.getPath().equals("/jcr:system")) {
continue;
}