fix(start): remove stray log (which looks like an error)
This commit is contained in:
parent
7e34c411f6
commit
abd21a5b08
@ -101,9 +101,8 @@ function lookInBuiltInPath(req, service) {
|
||||
try {
|
||||
var serviceFile = path.resolve(__dirname, '../services/' + service.name);
|
||||
return req(serviceFile);
|
||||
} catch(e) {
|
||||
console.log(e);
|
||||
if(e.code !== 'MODULE_NOT_FOUND') {
|
||||
} catch (e) {
|
||||
if (e.code !== "MODULE_NOT_FOUND") {
|
||||
log.error(e);
|
||||
}
|
||||
log.info('Checked the built-in path: lib/services, for service: ' + service.name);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user