diff --git a/src/compiler/compile/render_dom/index.ts b/src/compiler/compile/render_dom/index.ts index 868e274f2e..7ca2f16a6f 100644 --- a/src/compiler/compile/render_dom/index.ts +++ b/src/compiler/compile/render_dom/index.ts @@ -467,7 +467,6 @@ export default function dom( } } $$setup(options) { - console.log("$$setup"); ${css.code && b`this.shadowRoot.innerHTML = \`\`;`} @init(this, { props: options ? options.props : null, target: this.shadowRoot }, ${definition}, ${has_create_fragment ? 'create_fragment': 'null'}, ${not_equal}, ${prop_indexes}, ${dirty}); diff --git a/src/runtime/internal/Component.ts b/src/runtime/internal/Component.ts index 73b24f84d0..e5eef9631b 100644 --- a/src/runtime/internal/Component.ts +++ b/src/runtime/internal/Component.ts @@ -178,7 +178,6 @@ if (typeof HTMLElement === 'function') { } connectedCallback() { - console.log("connectedCallback"); if (!this.$$) { // wasn't set up from constructor as options were not ready const options = Object.keys(this.$$initialProps).length ? @@ -200,7 +199,6 @@ if (typeof HTMLElement === 'function') { // initial implementation of method, will be overridden on setup attributeChangedCallback(attr, _oldValue, newValue) { - console.log(`attributeChangedCallback: ${attr}, ${newValue}`); if (this.$$initialProps) { this.$$initialProps[attr] = newValue; }