diff --git a/src/mol-model/structure/structure/accessible-surface-area.ts b/src/mol-model/structure/structure/accessible-surface-area.ts
index 9230353d56d458773627a54ad83e7420f80afe02..754aaf7d6aef86c7cc1443ce7426e2fe1eb9f5ce 100644
--- a/src/mol-model/structure/structure/accessible-surface-area.ts
+++ b/src/mol-model/structure/structure/accessible-surface-area.ts
@@ -250,12 +250,8 @@ namespace AccessibleSurfaceArea {
     function handleNonStandardCase(element: ElementSymbol): number {
         const radius = VdwRadius(element);
         let index = VdWLookup.indexOf(radius);
-        console.log(radius);
-        console.log(index);
-        console.log(VdWLookup);
         if (index === -1) {
             // add novel value to lookup array
-            console.log(`novel value ${radius} for ${element}`)
             index = VdWLookup.length;
             VdWLookup[index] = radius;
         }
diff --git a/src/tests/browser/render-asa.ts b/src/tests/browser/render-asa.ts
index 3f6262984c0db8818540cbd7e875ee44101b1596..a77239225bb01a525e33481bcd6a0403c341b757 100644
--- a/src/tests/browser/render-asa.ts
+++ b/src/tests/browser/render-asa.ts
@@ -74,7 +74,8 @@ async function init(props = {}) {
         // '1acj'
         // '1pga'
         '1brr'
-        )
+        // '1hrc'
+    )
     const models = await getModels(cif)
     const structure = await getStructure(models[0])