From 030ad545cf6edb0f258d1ca7db9be10f642c7b3f Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 19 Feb 2024 14:18:41 +0800 Subject: [PATCH] fix: set both `log` and `logs` Somehow the documentation is inconsistent on this feature: https://github.com/verdaccio/verdaccio/commit/b1d258b1da7e2739a369f5ea58836dc43edad590 The release note seems to suggest that `log` is the correct key: https://github.com/verdaccio/verdaccio/releases/tag/v5.22.1 But according to my test, only `logs` works. Anyway, let's keep both so that it surely works. --- verdaccio.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/verdaccio.yaml b/verdaccio.yaml index df3f72a..56309ac 100644 --- a/verdaccio.yaml +++ b/verdaccio.yaml @@ -60,3 +60,4 @@ packages: proxy: npmjs log: { type: stdout, format: pretty, level: warn } +logs: { type: stdout, format: pretty, level: warn }