log_error writes a log message.
Return Value
bool is TRUE (1) if the function was successful and otherwise FALSE (0).
Parameters
ssLogger is a logger name. If an empty string is specified (“”) the “uniscript” logger is used.
ssSource is a string with the log source. An empty string (“”) is valid.
ssMessage is the logging message. The string can contain embedded format characters. The parameters following the ssMessage contain the optional arguments. See sprintf.
Example
n = 4;
log_trace("uniscript", "", "Number of Points: %d", n);
History
| Version | Description |
|---|---|
| 5.0.0 | New |
See also
id-1148088