Skip to content

Commit 75451e4

Browse files
committed
ENH: Add debug in case the issue is in the second, more common case
1 parent 878a97b commit 75451e4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

nipype/pipeline/engine/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1066,6 +1066,9 @@ def make_field_func(*pair):
10661066
if re.match(src_id + r'((\.[a-z](I\.[a-z])?|J)\d+)?$',
10671067
node.itername):
10681068
expansions[src_id].append(node)
1069+
else:
1070+
logger.debug("Unmatched pattern: %s; src_id: %s",
1071+
node.itername, src_id)
10691072
for in_id, in_nodes in list(expansions.items()):
10701073
logger.debug("The join node %s input %s was expanded"
10711074
" to %d nodes.", jnode, in_id, len(in_nodes))

0 commit comments

Comments
 (0)