Operation: Log Batch Message
The Log Batch Message
operation logs multiple log messages that are passed through a specific input structure.
For this operation,key
andlevel
must be defined in the XML input structure.
Note:
The output of the operation Log Batch Message
is displayed BAM Log tab in the X4 Control Center in the X4 Process Monitor web app.
For more information about the X4 Control Center and the X4 Process Monitor Web App, see the X4 Control Center Guide.
Input
The adapter expects the following XML structure as input:
Example
<Element>
<MESSAGE level="INFO" key="A">
This is an info.
</MESSAGE>
<MESSAGE level="WARN" key="B">
This is a warning.
</MESSAGE>
</Element>
Output
The adapter generates an XML document as output:
Example
<Element>
<MESSAGE level="INFO" key="A">
This is an info.
</MESSAGE>
<MESSAGE level="WARN" key="B">
This is a warning.
</MESSAGE>
</Element>