Javascript Log Erro sem Traceback
try {
// code that throws error
throw new Error("The message");
} catch (error) {
// this will log just the error's message
console.error(error.message);
}
// output: "The message"
The Nic