I'm using axios in my react app to send a POST to another server. If the server responds with an error 500 code, it shows in the chrome dev-tools:
POST http://192.168.1.2:3001/login 500 (Internal Server Error)
I'm handling the 500 code internally, and this is something that might happen in my app and is not considered an error.
Is it possible to configure axios not to log the error on the dev tools? I do not want the end user to see it.