This release is 1 version behind 0.224.14 — the latest version of @std/log. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
UNSTABLE: A customizable logger framework
This package works with DenoIt is unknown whether this package works with Bun

JSR Score
88%
Published
4 months ago (0.224.13)
// Copyright 2018-2025 the Deno authors. MIT license. import type { BaseHandler } from "./base_handler.ts"; import { DEFAULT_CONFIG } from "./_config.ts"; import type { Logger } from "./logger.ts"; export const state = { handlers: new Map<string, BaseHandler>(), loggers: new Map<string, Logger>(), config: DEFAULT_CONFIG, };