1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 01:14:36 +00:00

chore: remove console.log statements

This commit is contained in:
2021-06-30 21:42:46 +05:00
parent 63f5f4d03d
commit ccc77cb9d1
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ export class WebJobExecutor extends BaseJobExecutor {
'Valid JSON could not be extracted from response.'
)
}
console.log('WebJobExecutor')
isValidJson(jsonResponse)
this.appendRequest(res, sasJob, config.debug)
resolve(res.result)

View File

@@ -425,7 +425,7 @@ export class RequestClient implements HttpClient {
if (weboutResponse === '') {
throw new Error('Valid JSON could not be extracted from response.')
}
console.log('RequestClient')
isValidJson(weboutResponse)
parsedResponse = JSON.parse(weboutResponse)
} catch {