From d8d130ad414e711693679e33d2975cb88f44b334 Mon Sep 17 00:00:00 2001 From: Ezra Ramatong Date: Tue, 1 Jul 2025 12:47:49 +0200 Subject: [PATCH] docs: Clarify that console.error appears in console but uses stderr --- .../command-line/output-to-the-command-line-using-nodejs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/pages/en/learn/command-line/output-to-the-command-line-using-nodejs.md b/apps/site/pages/en/learn/command-line/output-to-the-command-line-using-nodejs.md index b1baee2cf9168..b596af4271ad3 100644 --- a/apps/site/pages/en/learn/command-line/output-to-the-command-line-using-nodejs.md +++ b/apps/site/pages/en/learn/command-line/output-to-the-command-line-using-nodejs.md @@ -165,7 +165,7 @@ As we saw console.log is great for printing messages in the Console. This is wha `console.error` prints to the `stderr` stream. -It will not appear in the console, but it will appear in the error log. +It will appear in the console, but can be handled separately from regular output. ### Color the output