Browse Source

remove debug

isundil 1 tháng trước cách đây
mục cha
commit
4c92066c74
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      src/ldapAuthenticationHandler.ts

+ 0 - 1
src/ldapAuthenticationHandler.ts

@@ -75,7 +75,6 @@ export class LdapAuthenticationHandler implements IAuthenticationHandler {
 
     public async tryLogin(username: string, password: string, totp?: string): Promise<boolean | null> {
         const account = await this.tryBind(username, password);
-        console.log(account);
         if (!account)
             return null;
         return TotpChecker.ValidateTotp(account.totp, totp);