4.5 GetLogRequest

The GetLogRequest message is sent by the central system to request log files from the charge point. These logs can be used for diagnostic purposes or to review charge point activities.

API Syntax

Description

Input Params

Return Value

SendGetLogResponse

This function sends the response for a GetLog request, using the provided resUUID to get the response with the original request.

char *resUUID

GETLOG_STATUS_T

Example:

  case GET_LOG_REQUEST:
  {
      char* msgID = GetLogMessageID();

      /* Send initial log response */
      SendGetLogResponse(msgID);
  }
  break;