mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-10 15:21:56 +00:00
Better logging on database errors
This commit is contained in:
parent
61350d94e9
commit
8a1c3a4b43
1 changed files with 21 additions and 2 deletions
21
db/index.js
21
db/index.js
|
@ -4,7 +4,26 @@ var path = require("path");
|
|||
var mongoose = require("mongoose");
|
||||
var config = require(path.join(__dirname, "../config/config.js"));
|
||||
|
||||
mongoose.connect(config.mongo.uri);
|
||||
var connect = function () {
|
||||
mongoose.connect(config.mongo.uri, {
|
||||
server: {
|
||||
socketOptions: {
|
||||
keepAlive: 1,
|
||||
connectTimeoutMS: 30000
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
connect();
|
||||
|
||||
mongoose.connection.on("error", function (error) {
|
||||
winston.error(error);
|
||||
});
|
||||
|
||||
mongoose.connection.on("disconnected", function () {
|
||||
winston.error("MongoDB: Was disconnected.");
|
||||
});
|
||||
|
||||
// Load models
|
||||
require(path.join(__dirname, "/models/message"));
|
||||
|
|
Loading…
Reference in a new issue