Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: mention potential deprecation of @std/log #6364

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion log/mod.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
// Copyright 2018-2025 the Deno authors. MIT license.

/**
* Logging library with the support for terminal and file outputs. Also provides
* Logging library with support for terminal and file outputs. Also provides
* interfaces for building custom loggers.
*
* > [!IMPORTANT]
* > @std/log is [likely to be removed in the future](https://github.com/denoland/std/issues/6124).
* > Consider using [Open Telemetry](https://docs.deno.com/runtime/fundamentals/open_telemetry/).
*
* ## Loggers
*
* Loggers are objects that you interact with. When you use a logger method it
Expand Down
Loading