What is the correct syntax for a Logger component to output a message with the contents of a 3SON Object payload?
Option 3 is the only corect answer as it concatenates payload with String.
Below option wont work.
#['The payload is ' ++ payload]
Concatenation function expects both arguments to be string. As the question says payload is json object , this will throw error while running it. You can try this in Anypoint Studio and you will get the same result which I mentioned.
hence correct answer is
The payload is: #[payload]
Margot
13 days agoElise
18 days agoLeonor
23 days agoBuddy
28 days agoAnnelle
1 month agoRory
1 month agoMargarita
1 month agoFlo
2 months agoLuisa
2 months agoLeila
2 months agoYesenia
2 months agoKeneth
2 months ago