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

8 lines
136 B
JavaScript

'use strict';
var debug = require('debug');
module.exports = function batchDebug (ns) {
return debug(['batch', ns].join(':'));
};