Files
old-web/app/helpers/log.js

14 lines
194 B
JavaScript
Raw Normal View History

2020-09-13 04:48:11 -07:00
const {
PRINT_CRAWLER_DEBUG
} = require("../config/appConfig");
const logDebug = (...args) => {
if (PRINT_CRAWLER_DEBUG) {
console.log(...args);
}
}
module.exports = {
logDebug
};