14 lines
194 B
JavaScript
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
|
|
};
|