-
Notifications
You must be signed in to change notification settings - Fork 940
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
Remove DEBUG_FD #406
Remove DEBUG_FD #406
Conversation
And how now we can change output without editing client code? What WebStorm or electron-webpack should do? |
@thebigredgeek @TooTallNate DEBUG_FD was removed entirely? My project had also used DEBUG_FD to make sure debug goes to stdout in all submodules as @wallali mentioned: Modules I depend on who also internally use debug whose code I do not control keep outputting to stderr and I cannot redirect them to stdout. I do not want to redirect all stderr to stdout, just want all debug output to go to stdout. Is this doable without the DEBUG_FD flag? |
Now simply uses
process.stderr
. Breaking API change, for the v3 branch.Previously used internal and undocumented Node.js APIs to support this underly used API.
Fixes #280.
Closes #386.