Log errors to console on command failure

This commit is contained in:
Simon Ser 2021-03-03 09:56:23 +01:00
parent eaf3b0a5ac
commit 72977b30b4

View File

@ -781,6 +781,7 @@ export default class App extends Component {
try {
cmd(this, args);
} catch (error) {
console.error("Failed to execute command '" + name + "'", error);
this.setState({ error });
}
}