Rest
...args: TSerializable[]log arguments
If enabled, log calls will also be sent to the native environment and logged in the native syslog.
Implementors shall enable bridge logging if true
Prints error style logs
Rest
...args: TSerializable[]log arguments
Gets the current logger level mask
Prints info style logs
Rest
...args: TSerializable[]log arguments
The log level to filter prints.
This is a bitmask, so to enable multiple options, use the bitmask OR (|) operator. e.g: setLevel(INFO | WARN | ERROR)
To remove a bit, you can use getLevel() to get the current mask and use &= operator along with the bit NOT (~) operator. e.g: mask &= INFO; // Remove INFO from log outputs
The verbosity level
Prints warn style logs
Rest
...args: TSerializable[]log arguments
Prints debug style logs