i handle response status 401 by the axios interceptors. If i get an 401 response, i try to refresh the jwt token and make the request again. But if i get the 401 response, axios or vuejs print that to the console. Why? I don't print the error to the console in my axios interceptor. How can i disable to print this 401 error?
I would like to print other errors but the errors that i handle in the interceptor (for example the 401 response) i would not like to print that in the console.
Thanks!