Function: app_log

Function

Records logs in the log files of the system.

Prototype

  • C Prototype
    1
    ACL_APP_LOG(aclLogLevel logLevel, const char *message)
    
  • Python Function
    1
    acl.app_log(log_level, message)
    

Parameters

Parameter

Description

log_level

Log level (int).

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

message

Recorded log information (str).

Return Value

None