Skip to content

Instantly share code, notes, and snippets.

@nidble
Last active October 25, 2017 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nidble/a801389b91e11f2139680db782cb5959 to your computer and use it in GitHub Desktop.
Save nidble/a801389b91e11f2139680db782cb5959 to your computer and use it in GitHub Desktop.
mongoose setup
// https://github.com/KunalKapadia/express-mongoose-es6-rest-api
// print mongoose logs in dev env
if (config.MONGOOSE_DEBUG) {
mongoose.set('debug', (collectionName, method, query, doc) => {
debug(`${collectionName}.${method}`, util.inspect(query, false, 20), doc);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment