Files
old-web/app/helpers/log.js
2020-09-13 04:48:11 -07:00

14 lines
194 B
JavaScript

const {
PRINT_CRAWLER_DEBUG
} = require("../config/appConfig");
const logDebug = (...args) => {
if (PRINT_CRAWLER_DEBUG) {
console.log(...args);
}
}
module.exports = {
logDebug
};