mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-14 17:56:16 +01:00
25 lines
713 B
JavaScript
25 lines
713 B
JavaScript
(function(RedisDB) {
|
|
var PRODUCTION = false,
|
|
ERROR_LOGS = true,
|
|
|
|
redis = require('redis'),
|
|
config = require('../config.js');
|
|
|
|
|
|
RedisDB.exports = redis.createClient(config.redis.port, config.redis.host, config.redis.options);
|
|
|
|
RedisDB.exports.handle = function(error) {
|
|
if (error !== null) {
|
|
if (PRODUCTION === false) {
|
|
console.log("################# ERROR LOG ####################");
|
|
console.log(error);
|
|
console.log(arguments.callee.name);
|
|
console.log("################# ERROR LOG ####################");
|
|
throw new Error('RedisDB Error: ' + error);
|
|
} else if (ERROR_LOGS === true) {
|
|
console.log('RedisDB Error: ' + error);
|
|
}
|
|
}
|
|
}
|
|
|
|
}(module)); |