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

@ -121,9 +121,6 @@ export default class IdNotService extends BaseService {
code: 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" });
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');
return false;
} else {
console.log('SMS sent successfully via Ovh');
return true;
}
});

View File

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