log_add_loggerΒΆ

log_add_logger adds a logger to the list of loggers.

bool = log_add_logger(ssLogger)

Return Value

bool is TRUE (1) if the function was successful and otherwise FALSE (0).

Parameters

ssLogger

ssLogger is the logger name.

Example

log_add_logger("my-logger");
// List all loggers.
print log_get_logger_names();

History

Version Description
5.0.0 New

id-1035969