docs: how to disable status code coloring in logger middleware#553
Open
StuartMoncrieff wants to merge 2 commits intohonojs:mainfrom
Open
docs: how to disable status code coloring in logger middleware#553StuartMoncrieff wants to merge 2 commits intohonojs:mainfrom
StuartMoncrieff wants to merge 2 commits intohonojs:mainfrom
Conversation
This was referenced Dec 20, 2024
yusukebe
reviewed
Dec 21, 2024
|
|
||
| ::: tip | ||
|
|
||
| To disable _status code coloring_, you can set a `NO_COLOR` environment variable. This is a common way to disable ANSI color escape codes in logging libraries, and is described at <https://no-color.org/>. Note that CloudFlare Workers do not have a `process.env` object, so will default to plaintext log output. |
Member
There was a problem hiding this comment.
CloudFlare Workers should be Cloudflare Workers (f is lowercase).
Member
|
Thank you for the PR! I've added the comment. |
codeOwlAI
pushed a commit
to codeOwlAI/website
that referenced
this pull request
Jun 29, 2025
fix typos error of documents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added a tip on how to disable status code coloring for the built-in logger's output by setting the
NO_COLORenvironment variable.Also added a link to Pino logging middleware for Hono (as an alternative to the built-in logger middleware).