What is the DataWeave expression to log the Content-Type header using a Logger component? A. #[“Content-Type: ” + attributes.headers.’content-type’] B. #[“Content-Type: ” + attributes.headers.’content-type’] C. #[“Content-Type: ” ++ headers.’content-type’] D. #[“Content-Type: ” ++ attributes.headers.’content-type’] Answer Workspace Report Discuss Answer with explanation Answer: Option D Explanation The correct answer is #[“Content-Type: ” ++ attributes.headers.’content-type’] Workspace
Discuss about the question