diff --git a/lib/internal/inspect_repl.js b/lib/internal/inspect_repl.js index e246b70..c93d792 100644 --- a/lib/internal/inspect_repl.js +++ b/lib/internal/inspect_repl.js @@ -234,7 +234,6 @@ class ScopeSnapshot { constructor(scope, properties) { Object.assign(this, scope); this.properties = new Map(properties.map((prop) => { - // console.error(prop); const value = new RemoteObject(prop.value); return [prop.name, value]; }));