System.report#
- System.report(path=None)[source]#
Write system routine reports to a plain-text file.
- Parameters:
- pathstr, optional
Output file path or directory. When given, the report is written to the resolved path and the system-level
no_outputflag is bypassed. WhenNone, the report is written toself.files.txtonly ifself.files.no_outputisFalse.
- Returns:
- bool
Trueif the report was written,Falseotherwise.
Notes
Differences from ANDES:
ANDES has no
System.report(); the equivalent is per-routine (e.g.system.PFlow.report()) and takes nopathargument.In AMS, an explicit
pathoverridesno_output=Trueso users can produce a one-off report without flipping the system flag.
Changed in version 1.3.0: Added
pathparameter.