diff --git a/dist/pdfParser.js b/dist/pdfParser.js
index 77a13fd0d020e8dc68817a59a84c2986cb05f2e8..7ec7c66c7cbe6d51837e812263715398e537e150 100644
--- a/dist/pdfParser.js
+++ b/dist/pdfParser.js
@@ -78,15 +78,8 @@ class PDFparser {
             else {
                 const pdflib = yield Promise.resolve().then(() => __importStar(require("@pdftron/pdfnet-node")));
                 lib = pdflib.PDFNet;
-            }
-            //will this work ??
-            console.log(lib);
-            try {
                 yield lib.initialize(licenseKey);
             }
-            catch (e) {
-                console.log(e);
-            }
             try {
                 buf = yield (0, utils_1.TimestampAndEnableLTV)(this.document, certPath, certTSAUrl, imgBytes, coords, lib);
             }
diff --git a/src/pdfParser.ts b/src/pdfParser.ts
index 6d517f5700968ea3ceff58d013fff771f0e90d99..ae27bbd4c72359aee24f48b53e8050763cab4c28 100644
--- a/src/pdfParser.ts
+++ b/src/pdfParser.ts
@@ -74,14 +74,7 @@ class PDFparser {
     } else {
       const pdflib = await import("@pdftron/pdfnet-node");
       lib = pdflib.PDFNet;
-    }
-
-    //will this work ??
-    console.log(lib);
-    try {
       await lib.initialize(licenseKey);
-    } catch (e) {
-      console.log(e);
     }
 
     try {