1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/lib/debug.js
2017-05-26 23:34:28 +02:00

18 lines
271 B
JavaScript

'use strict'
var index
function lazyIndex () {
return index || require('../')
}
/**
* @description Print a debug statement if in debug mode
*/
function debug () {
if (lazyIndex().debugMode) {
console.error.apply(null, arguments)
}
}
module.exports = debug