lynx-family/lynx-stack

[Feature]: Support `--log-level` CLI flag and `logLevel` configuration

Open

#1,818 opened on 2025年9月24日

GitHub で見る
 (3 comments) (0 reactions) (1 assignee)TypeScript (126 forks)github user discovery
PR welcomegood first issuestale

Repository metrics

Stars
 (711 stars)
PR merge metrics
 (平均マージ 3d 17h) (30d で 87 merged PRs)

説明

What problem does this feature solve?

Set the log level (info | warn | error | silent).

What does the proposed API of configuration look like?

The same as Rsbuild:

rspeedy --log-level silent
rspeedy --log-level debug
rspeedy --log-level error

And a new logLevel configuration:

import { defineConfig } from '@lynx-js/rspeedy'

export default defineConfig({
  logLevel: 'error',
})

コントリビューターガイド