%dw 2.0
output application/json
---
log("WARNING", "Houston, we have a problem")
log
log<T>(prefix: String = "", value: T): T
Without changing the value of the input, log
returns the input as a system
log. So this makes it very simple to debug your code, because any expression or subexpression can be wrapped
with log and the result will be printed out without modifying the result of the expression.
The output is going to be printed in application/dw format.
The prefix parameter is optional and allows to easily find the log output.
Use this function to help with debugging DataWeave scripts. A Mule app
outputs the results through the DefaultLoggingService
, which you can see
in the Studio console.
Parameters
Name | Description |
---|---|
|
An optional string that typically describes the log. |
|
The value to log. |
Example
This example logs the specified message. Note that the DefaultLoggingService
in a Mule app that is running in Studio returns the message
WARNING - "Houston, we have a problem,"
adding the dash -
between the
prefix and value. The Logger component’s LoggerMessageProcessor
returns
the input string "Houston, we have a problem."
, without the WARNING
prefix.
Example
This example shows how to log the result of expression myUser.user
without modifying the
original expression myUser.user.friend.name
.