mule - logging from inside dataweave -
just use
<xsl:message>
inside xsl transformer ,
system.out.println
for datamapper, have logging mechanism dataweave ? if not direct component, have other alternate mechanisms achieve logging inside dataweave ?
in mule 3.8 can ,mule allows logging in dataweave
%dw 1.0 %output application/json --- { result: log("logging array",[1,2,3,4]) }
you can refer latest document here
Comments
Post a Comment