fix logging when resetting

pull/1/head
ansuz 8 years ago
parent 9d83214158
commit 7a7307d560

@ -1552,7 +1552,10 @@ define([
common.arePinsSynced(function (err, yes) {
if (!yes) {
common.resetPins(function (err) {
if (err) { console.error(err); }
if (err) {
console.error("Pin Reset Error");
return console.error(err);
}
console.log('RESET DONE');
});
}

Loading…
Cancel
Save