1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00

chore: return webout and log seperately

This commit is contained in:
Saad Jutt
2021-12-29 00:27:54 +05:00
parent f0ac996b3c
commit 679e9de245

View File

@@ -33,7 +33,9 @@ const executeSASCode = async (req: any, { code }: ExecuteSASCodePayload) => {
const result = await new ExecutionController().executeProgram(
code,
getPreProgramVariables(req),
{ ...req.query, _debug: 131 }
{ ...req.query, _debug: 131 },
undefined,
true
)
return result as string