Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the console errors in axios?

Here's my code:

async [types.GET_DATA]({commit, state}, data) {
    try {
        const res = await axios.post('/login', {
            email: data.email,
            password: data.password,
        });
        console.log(res)
    } catch(e) {
        if(e.response) {
            console.log(e.response)
        }
    }
}

So, I return 400 Bad Request whenever user sends empty fields. What axios does is throws the error along with the error response. What I need to do is remove that console error message and only get the error response.

How can I do it?

like image 729
Damon Avatar asked Nov 07 '22 03:11

Damon


1 Answers

It is actually impossible to do with JavaScript. This is due to security concerns and a potential for a script to hide its activity from the user.

The best you can do is hide them from only your console.

like image 67
ierdna Avatar answered Nov 14 '22 14:11

ierdna