diff --git a/src/captcha/index.ts b/src/captcha/index.ts index 3f5c855..0c39568 100644 --- a/src/captcha/index.ts +++ b/src/captcha/index.ts @@ -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] -} \ No newline at end of file +}