Skip to content

Commit ef2b7c1

Browse files
committed
fix: changed warning to logging
1 parent 72b7a34 commit ef2b7c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@ def hash_exists(self, updatehash=False):
12111211
outdir = self.output_dir()
12121212
hashfiles = glob(os.path.join(outdir, '_0x*.json'))
12131213
if len(hashfiles) > 1:
1214-
warn('Removing multiple hashfiles and forcing node to rerun')
1214+
logger.info('Removing multiple hashfiles and forcing node to rerun')
12151215
for hashfile in hashfiles:
12161216
os.unlink(hashfile)
12171217
hashfile = os.path.join(outdir, '_0x%s.json' % hashvalue)

0 commit comments

Comments
 (0)