always verbose output.
See original GitHub issueAfter upgrading to #400 our build outputs are always verbose now. we use the node api like this.
import rebuild from 'electron-rebuild';
rebuild({
...
})
I tried few things but can’t suppress the node-gyp output. I tried setting the log-level to silent through npm env vars, it helps a little but still bunch of logs are printed out.
Any way to make rebuilds quiet? I made sure process.env.DEBUG is not set.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:10 (2 by maintainers)
Top Results From Across the Web
Verbose mode: Mac guide - Setapp
For your Mac to always booting in verbose mode: In Finder, clшck Go > Applications > Utilities > Terminal; Type the following command:...
Read more >How to boot your Mac in verbose mode - MacPaw
You can use Terminal to set your Mac up so that it always boots in verbose mode without you having to press Command+V....
Read more >What Is Verbose Mode and How to Boot Your Mac in Verbose ...
Verbose Mode is a booting mode on Macintosh computers that replaces the graphical startup screen with a series of command lines. Those specified ......
Read more >How to Always Boot Mac OS X in Verbose Mode - OSXDaily
How to Turn On Always Verbose Booting for Mac OS X. Simply execute the following nvram command at the Terminal to enable verbose...
Read more >always verbose output. · Issue #594 · electron/rebuild - GitHub
After upgrading to #400 our build outputs are always verbose now. we use the node api like this. import rebuild from 'electron-rebuild'; ...
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 FreeTop 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
Top GitHub Comments
Thanks, I’ve fixed that in #837.
This sounds like something that needs to be fixed in node-gyp.
I created this patch for electron-rebuild’s output (options available: verbose, silent, warn, silly)
electron-rebuild+2.3.5.patch
The downside is that we can’t filter the verbosity of
make
, which is what I’m understanding to be the main culprit here. Ref: https://github.com/nodejs/node-gyp/issues/532