SysLib.writeStdError function

SysLib.writeStdErr writes a string to the standard error destination.

Package

eglx.lang

Syntax
static function writeStderr(text string in);
text
The text to write.
Example use

Here is example code:

SysLib.writeStdErr("Opened file");
Comments

sysLib.writeStdErr() is typically for debugging.

Compatibility

Table 1. Compatibility
Target Issue
Java The output goes to the System.err output stream of the Java Virtual Machine (JVM).

The default is to route the output to the console, but when you start the JVM, you can route the output to a different location.

JavaScript No issues.