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