stat options not working in 2.1.0-beta.11
See original GitHub issueI’m submitting a bug report
webpack and webpack-dev-server version: webpack: 2.1.0-beta.26 webpack-dev-server: 12.1.0-beta.11
Please tell us about your environment: Linux Running server via Node.js API
Current behavior: I have the following in my config
devServer: {
quiet: true,
stats : {
hash : false,
version : false,
timings : false,
assets : false,
chunks : false,
modules : false,
reasons : false,
children : false,
source : false,
errors : false,
errorDetails: false,
warnings : false,
publicPath : false,
}
}
And despite having turned all options warning still output to console in browser. This is annoying because linter warnings would stop the reload.
The terminal output is as it should though
Expected/desired behavior: No output to console in browser with this config. Same as with terminal
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
webpack.validateSchema is not a function - Stack Overflow
25" and I tried running npm install and npm update . After that I get: npm WARN webpack-dev-server@2.1.0-beta.11 requires a peer of webpack@^2.1....
Read more >Anki 2.1.0 Beta 10 / 11 / 12 / Beta Testing Archive / Discussion Area ...
Since beta 9, a bug was introduced that causes any of the clozed fields after a left parenthesis to not show the clozed...
Read more >bundle-stats 2.5.0-beta.1 | Snyk
Learn more about bundle-stats@2.5.0-beta.1 vulnerabilities. bundle-stats@2.5.0-beta.1 has 6 known vulnerabilities found in 11 vulnerable paths.
Read more >AdGuard browser extension: 2.1.0 beta
AdGuard is the best way to get rid of annoying ads and online tracking and protect your computer from malware. Make your web...
Read more >Upgrade V2.0 Beta 15 to latest version | Ubiquiti Community
Hi All, I have been running V2.0 Beta 15 for ages, and as I upgrade to newer ... Beta 19 cannot be downloaded...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Yes!! Thank you so much!! I wouldn’t expect dev server to sort my warnings too!! 😂
To disable browser logs you’ll need to use
clientLogLevel: "none". This might seem a little redundant, but many people want only browser logs and no CLI logs.Sidenote:
clientLogLevel: "none"is broken at the moment in beta.11 (see #693), will be fixed in next beta.