Add traces with captcha solver service. resolves #39

This commit is contained in:
ngosang 2021-01-08 16:01:28 +01:00
parent 5710c08581
commit ade05bb7a8

View File

@ -1,3 +1,5 @@
import log from "../log";
export enum CaptchaType {
re = 'reCaptcha',
h = 'hCaptcha'
@ -31,5 +33,7 @@ export default (): Solver => {
}
}
log.info(`Using '${method} to solve the captcha.`);
return captchaSolvers[method]
}
}