CartoDB-SQL-API/batch/util/debug.js

8 lines
136 B
JavaScript
Raw Normal View History

2016-05-18 17:06:49 +08:00
'use strict';
var debug = require('debug');
module.exports = function batchDebug (ns) {
return debug(['batch', ns].join(':'));
};