mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-17 09:46:37 +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);
|
||||
}
|
||||
], 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