diff options
Diffstat (limited to 'client-web/source/logger.ts')
-rw-r--r-- | client-web/source/logger.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client-web/source/logger.ts b/client-web/source/logger.ts index 08dba66..20138b5 100644 --- a/client-web/source/logger.ts +++ b/client-web/source/logger.ts @@ -5,9 +5,9 @@ */ /// <reference lib="dom" /> -import { ediv } from "./helper.ts"; +import { e } from "./helper.ts"; -export const LOGGER_CONTAINER = ediv({ class: "logger-container" }) +export const LOGGER_CONTAINER = e("div", { class: "logger-container" }) const log_scope_color = { "*": "#ff4a7c", |