Difference between revisions of "MC-Basic:SYSTEM.ERRORPRINTLEVEL"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= Sys.ErrorPrintLevel ''= <value><br> ''System.ErrorPrintLevel ''= <value>''<br> ?Sys.ErrorPrintLevel<br> ?System.ErrorPrintLevel |AVAILABIL…')
 
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:SYSTEM.ERRORPRINTLEVEL}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 4: Line 5:
  
 
|SYNTAX=
 
|SYNTAX=
Sys.ErrorPrintLevel ''= <value><br>
+
Sys.ErrorPrintLevel ''= <''value''><br>
''System.ErrorPrintLevel ''= <value>''<br>
+
''System.ErrorPrintLevel ''= <''value''>''<br>
  
 
?Sys.ErrorPrintLevel<br>
 
?Sys.ErrorPrintLevel<br>
Line 41: Line 42:
  
 
|LIMITATIONS=
 
|LIMITATIONS=
Read-Only
+
Read only
  
 
|EXAMPLE=
 
|EXAMPLE=
Line 49: Line 50:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:SYSTEM.SERVICEPRINTLEVEL|SYSTEM.SERVICEPRINTLEVEL]]
+
* [[MC-Basic:SYSTEM.SERVICEPRINTLEVEL|SYSTEM.SERVICEPRINTLEVEL]]
 
 
  
 +
[[Category:MC-Basic:Error Handling|SYSTEM.ERRORPRINTLEVEL]]
 +
[[Category:MC-Basic:System|MC-Basic:System]]
 
}}
 
}}

Latest revision as of 03:05, 2 May 2017

Language: English  • 中文(简体)‎

Controls which errors are printed, according to the severity of the error. Only asynchronous errors are printed; synchronous errors are not affected. Logging of errors and fatal-faults is not affected by this command.

0 (SILENTLEVEL) – Notes, errors, and fatal faults are not printed.

1 (FAULTLEVEL) – Notes and errors are not printed; fatal faults are printed.

2 (ERRORLEVEL) – Notes are not printed; errors and fatal faults are printed.

3 (NOTELEVEL) – Notes, errors, and fatal faults are printed.

Syntax

Sys.ErrorPrintLevel = <value>
System.ErrorPrintLevel = <value>

?Sys.ErrorPrintLevel

?System.ErrorPrintLevel

Availability

All versions

Type

Long

Range

0 to 3

Default

3

Scope

Task or Terminal

Limitations

Read only

Examples

?System.ErrorPrintLevel

System.ErrorPrintLevel = 3

See Also