@@ -20,7 +20,10 @@ performance issues.
2020 from nipype import config
2121 config.enable_debug_mode()
2222
23- as the first import of your nipype script.
23+ as the first import of your nipype script. To enable debug logging use::
24+
25+ from nipype import logging
26+ logging.update_logging(config)
2427
2528 .. note::
2629
@@ -39,10 +42,10 @@ performance issues.
3942 node to fail without generating a crash file in the crashdump directory. In
4043 such cases, it will store a crash file in the `batch ` directory.
4144
42- #. All Nipype crashfiles can be inspected with the `nipype_display_crash `
45+ #. All Nipype crashfiles can be inspected with the `nipypecli crash `
4346 utility.
4447
45- #. The `nipype_crash_search ` command allows you to search for regular expressions
48+ #. The `nipypecli search ` command allows you to search for regular expressions
4649 in the tracebacks of the Nipype crashfiles within a log folder.
4750
4851#. Nipype determines the hash of the input state of a node. If any input
@@ -66,6 +69,6 @@ performance issues.
6669 PBS/LSF/SGE/Condor plugins in such cases the workflow may crash because it
6770 cannot retrieve the node result. Setting the `job_finished_timeout ` can help::
6871
69- workflow.config['execution']['job_finished_timeout'] = 65
72+ workflow.config['execution']['job_finished_timeout'] = 65
7073
7174.. include :: ../links_names.txt
0 commit comments