EGL library logLib

The logLib utility offers a set of logging functions that support multiple log levels DEBUG, ERROR, INFO, TRACE and WARN. These functions are designed to help developers effectively monitor, debug, and trace the behavior of EGL applications during execution.

The following table provides an overview of the available functions in logLib.

System function/Invocation Description

debug (message any in)

Logs a debugging message.

debug (message String in, data any in)

Logs a debugging message along with EGL data.

error (message String in)

Logs an error message.

error (message String in, data any in)

Logs an error message along with EGL data.

info (message String in)

Logs an informational message.

info (message String in, data any in)

Logs an informational message along with EGL data.

trace(message String in )

Logs the stack trace to the console.

trace(message String in, data any in)

Logs the stack trace along with EGL data

warn (message String in)

Logs a warning message

warn (message String in, data any in)

Logs a warning message along with EGL data