Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Jul 25, 2023
1 parent a8a0638 commit 838d010
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ export async function start (params: EdgedriverParameters) {

params.allowedOrigins = params.allowedOrigins || DEFAULT_ALLOWED_ORIGINS
params.allowedIps = params.allowedIps || DEFAULT_ALLOWED_IPS
return cp.spawn(binaryFilePath, parseParams(params))

const args = parseParams(params)
console.log(`Starting EdgeDriver with params: ${args.join(' ')}`)
return cp.spawn(binaryFilePath, args)
}

export const download = downloadDriver
Expand Down

0 comments on commit 838d010

Please sign in to comment.