# HG changeset patch # User drewp@bigasterisk.com # Date 2022-05-22 00:06:25 # Node ID d678c2757cd47e160393e182758074ecb2012f3e # Parent 4d248fb66d0c70a829e19c0ed2b870c47de9d720 config log() better. note that in chrome, you have to turn on 'verbose' in the console log to see anything :( diff --git a/light9/collector/web/Light9CollectorUi.ts b/light9/collector/web/Light9CollectorUi.ts --- a/light9/collector/web/Light9CollectorUi.ts +++ b/light9/collector/web/Light9CollectorUi.ts @@ -1,8 +1,10 @@ import { sortBy, uniq } from "underscore"; -import * as debug from "debug"; +import debug from "debug"; import { html, LitElement } from "lit"; import { customElement, property } from "lit/decorators.js"; -debug.enable("*"); + +debug.enable('*'); +const log = debug("collector"); class Updates { constructor() {