Function: app_log

C Prototype

ACL_APP_LOG(aclLogLevel logLevel, const char *message)

Python Function

acl.app_log(log_level, message)

Function Usage

Records logs in the log files of the system.

Input Description

log_level: int, log level.

  • 0: DEBUG
  • 1: INFO
  • 2: WARNING
  • 3: ERROR

message: str, recorded log information.

Return Value

None

Restrictions

None