We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 448fda5 commit a0c3f38Copy full SHA for a0c3f38
api/apiCustomFunctions.js
@@ -48,7 +48,7 @@ const submitFoiRequest = async (server, req, res, next) => {
48
console.log("calling RAW FOI Request");
49
const response = await requestAPI.invokeRequestAPI(JSON.stringify(data.params), apiUrl);
50
51
- console.log(`API response = ${response.status}`);
+ console.log(`API response = Status: ${response.status}, Message: ${response.message}`);
52
53
if(response.status === 200 && response.data.status ) {
54
console.log(`response id: ${response.data.id}`);
0 commit comments