refactor: remove error stack logging from npm-mongo connection error handling

This commit is contained in:
italo jose
2025-07-18 11:05:36 -03:00
parent 536b9708ad
commit 40580b00ca

View File

@@ -12,8 +12,6 @@ function connect(client) {
}
return false
} else {
// log the stack
console.error(error.stack);
throw new Error(`Failed to initialize Meteor's npm-mongo package: ${error}`);
}
})