@@ -20,7 +20,10 @@ performance issues.
20
20
from nipype import config
21
21
config.enable_debug_mode()
22
22
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)
24
27
25
28
.. note::
26
29
@@ -39,10 +42,10 @@ performance issues.
39
42
node to fail without generating a crash file in the crashdump directory. In
40
43
such cases, it will store a crash file in the `batch ` directory.
41
44
42
- #. All Nipype crashfiles can be inspected with the `nipype_display_crash `
45
+ #. All Nipype crashfiles can be inspected with the `nipypecli crash `
43
46
utility.
44
47
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
46
49
in the tracebacks of the Nipype crashfiles within a log folder.
47
50
48
51
#. Nipype determines the hash of the input state of a node. If any input
@@ -66,6 +69,6 @@ performance issues.
66
69
PBS/LSF/SGE/Condor plugins in such cases the workflow may crash because it
67
70
cannot retrieve the node result. Setting the `job_finished_timeout ` can help::
68
71
69
- workflow.config['execution']['job_finished_timeout'] = 65
72
+ workflow.config['execution']['job_finished_timeout'] = 65
70
73
71
74
.. include :: ../links_names.txt
0 commit comments