removed logs

This commit is contained in:
Vins 2023-12-13 10:20:24 +01:00
parent 7f4954c6af
commit 6997e13d28
3 changed files with 1 additions and 6 deletions

View File

@ -120,10 +120,7 @@ export default class IdNotService extends BaseService {
redirect_uri: this.variables.IDNOT_REDIRECT_URL, redirect_uri: this.variables.IDNOT_REDIRECT_URL,
code: code, code: code,
grant_type: "authorization_code", grant_type: "authorization_code",
}); });
console.log(this.variables.IDNOT_BASE_URL + this.variables.IDNOT_CONNEXION_URL + "?" + query);
const token = await fetch(this.variables.IDNOT_BASE_URL + this.variables.IDNOT_CONNEXION_URL + "?" + query, { method: "POST" }); const token = await fetch(this.variables.IDNOT_BASE_URL + this.variables.IDNOT_CONNEXION_URL + "?" + query, { method: "POST" });
if(token.status !== 200) console.error(await token.text()); if(token.status !== 200) console.error(await token.text());

View File

@ -27,7 +27,6 @@ export default class OvhService extends BaseService {
console.error('Error sending Ovh Sms'); console.error('Error sending Ovh Sms');
return false; return false;
} else { } else {
console.log('SMS sent successfully via Ovh');
return true; return true;
} }
}); });

View File

@ -21,7 +21,6 @@ export default class SmsFactorService extends BaseService {
{}, {},
) )
.then((response) => { .then((response) => {
console.log("SMS sent successfully via Sms Factor");
return true; return true;
}) })
.catch((error) => { .catch((error) => {