mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-20 02:58:05 +00:00
log any error with the services
This commit is contained in:
parent
c893c34fd2
commit
eb7c89045e
@ -72,7 +72,11 @@ ServicesMonitor.prototype.check = function() {
|
|||||||
callback(null, result);
|
callback(null, result);
|
||||||
}
|
}
|
||||||
], function(err, result) {
|
], function(err, result) {
|
||||||
self.logger.availableServices(result);
|
if (err) {
|
||||||
|
self.logger.error(err.message);
|
||||||
|
} else {
|
||||||
|
self.logger.availableServices(result);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user