1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-06 20:10:05 +00:00

feat(log): write logs to file when polling for job status

This commit is contained in:
Krishna Acondy
2021-07-07 10:02:14 +01:00
parent 5a7b4a1de4
commit 04ccbf6843
7 changed files with 689 additions and 501 deletions

View File

@@ -1,4 +1,6 @@
export interface PollOptions {
MAX_POLL_COUNT?: number
POLL_INTERVAL?: number
maxPollCount: number
pollInterval: number
streamLog: boolean
logFilePath?: string
}