diff --git a/index.js b/index.js index 61bce5c..481d8eb 100644 --- a/index.js +++ b/index.js @@ -20,7 +20,7 @@ async function generatePdf(file, options, callback) { const page = await browser.newPage(); if(file.content) { - console.log("Compiling the template with handlebars") + console.debug("Compiling the template with handlebars") // we have compile our code with handlebars const template = hb.compile(file.content, { strict: true }); const result = template(file.content); @@ -61,7 +61,7 @@ async function generatePdfs(files, options, callback) { const page = await browser.newPage(); for(let file of files) { if(file.content) { - console.log("Compiling the template with handlebars") + console.debug("Compiling the template with handlebars") // we have compile our code with handlebars const template = hb.compile(file.content, { strict: true }); const result = template(file.content);