Skip to content

Commit d0e1ec8

Browse files
committed
elevate trace to warning
1 parent a1c780b commit d0e1ec8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/pipeline/engine/nodes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,8 @@ def run(self, updatehash=False):
434434
# Changing back to cwd is probably not necessary
435435
# but this makes sure there's somewhere to change to.
436436
cwd = os.path.split(outdir)[0]
437-
logger.debug('Current folder "%s" does not exist, changing to "%s" instead.',
438-
os.getenv('PWD', 'unknown'), cwd)
437+
logger.warning('Current folder "%s" does not exist, changing to "%s" instead.',
438+
os.getenv('PWD', 'unknown'), cwd)
439439

440440
os.chdir(outdir)
441441
try:

0 commit comments

Comments
 (0)