From 956c0a6e2088dede0d4de22f9727356b186cfed2 Mon Sep 17 00:00:00 2001 From: Jian Huang <104863719+jihuang-adobe@users.noreply.github.com> Date: Tue, 6 Dec 2022 11:11:55 -0500 Subject: [PATCH] enable action log forwarding as per AIO documentation https://developer.adobe.com/app-builder/docs/getting_started/common_troubleshooting/#action-logs x-ow-extra-logging: on is needed --- web-src/src/components/App.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web-src/src/components/App.js b/web-src/src/components/App.js index 1a6a0cb..5260026 100644 --- a/web-src/src/components/App.js +++ b/web-src/src/components/App.js @@ -48,7 +48,8 @@ const App = props => { method: 'POST', headers: { Accept: 'application/json', - 'Content-Type': 'application/json' + 'Content-Type': 'application/json', + 'x-ow-extra-logging': 'on' }, body: JSON.stringify(graphQLParams), credentials: 'same-origin'