Function convertMotionMasterMessageToLoggerContext

  • Converts a motionMasterMessage into a logger context object.

    This function extracts relevant details from the provided motionMasterMessage and constructs an object to be used as context in logging. It determines whether the message is a request or status type and stores the associated keys from the respective properties.

    Returns

    An object containing the namespace, the original motionMasterMessage, the type of message (either 'request' or 'status'), and the name (a string of keys from the request or status).

    Parameters

    • motionMasterMessage: IMotionMasterMessage

      The message to convert into a logger context.

    • Optional namespace: string = 'reqResMessage'

      The namespace to associate with the context (default is 'reqResMessage').

    Returns {
        motionMasterMessage: IMotionMasterMessage;
        name: string;
        namespace: string;
        type: string;
    }

Generated using TypeDoc