-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(gatsby): Respect VERBOSE env var #29708
Conversation
A bit late jumping in here but why don't we solve this more generally and let people set the logging level for when we create the CLI? gatsby/packages/gatsby-cli/src/create-cli.ts Lines 117 to 118 in 796be7e
|
e.g. |
* Respect GC_VERBOSE env var * Switch to VERBOSE * Support VERBOSE in build as well Co-authored-by: gatsbybot <[email protected]> (cherry picked from commit 97d6d3e)
@KyleAMathews We could do that. But I just added this for feature parity for Incremental Builds and Preview. The latter didn't support verbose logging at all. |
👍 not a big deal either way so parity makes sense
--
Kyle Mathews
Blog: *http://bricolage.io <http://bricolage.io>*
Twitter: http://twitter.com/kylemathews
…On Wed, Feb 24, 2021 at 8:30 AM Sidhartha Chatterjee < ***@***.***> wrote:
@KyleAMathews <https://github.com/KyleAMathews> We could do that. But I
just added this for feature parity for Incremental Builds and Preview. The
latter didn't support verbose logging at all.
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#29708 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGDWMDL24AUF7G6KAHQXLNTTAUSRRANCNFSM4YCUEUNQ>
.
|
* feat(gatsby): Respect VERBOSE env var (#29708) * Respect GC_VERBOSE env var * Switch to VERBOSE * Support VERBOSE in build as well Co-authored-by: gatsbybot <[email protected]> (cherry picked from commit 97d6d3e) * Add back chalk Co-authored-by: Sidhartha Chatterjee <[email protected]> Co-authored-by: Matt Kane <[email protected]>
Published in |
For gatsby develop
Incremental Builds supports this so we want feature parity for Preview
This depends on #29707