diff --git a/package-lock.json b/package-lock.json
index 86998446..c7f9b0bb 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "san-ssr",
-  "version": "1.4.0-development",
+  "version": "1.3.8",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
diff --git a/src/parsers/san-app-parser.ts b/src/parsers/san-app-parser.ts
index 5b644f49..130923a2 100644
--- a/src/parsers/san-app-parser.ts
+++ b/src/parsers/san-app-parser.ts
@@ -76,7 +76,6 @@ export class SanAppParser {
         if (!this.cache.has(sourceFile)) {
             this.cache.set(sourceFile, this.doParseSanSourceFile(sourceFile))
         }
-        console.log('cache size', this.cache.size)
         return this.cache.get(sourceFile)
     }