Skip to main content
Home
This release is 1 version behind 0.224.14 — the latest version of @std/log. Jump to latest

@std/log@0.224.13
Built and signed on GitHub Actions

UNSTABLE: A customizable logger framework

This package works with DenoIt is unknown whether this package works with Bun
This package works with Deno
It is unknown whether this package works with Bun
JSR Score
88%
Published
4 months ago (0.224.13)
Package root>_state.ts
// 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, };