-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
Description
Output from Make should be filtered into loglevels. That is, Make's stdout should be pushed to log.info and stderr should be pushed to log.warn. For example, for a small library I created:
jason@ginny:~/src/rasterize$ node-gyp rebuild --loglevel warn
make: Entering directory `/home/jason/src/rasterize/build'
CXX(target) Release/obj.target/rasterize/rasterize.o
SOLINK_MODULE(target) Release/obj.target/rasterize.node
SOLINK_MODULE(target) Release/obj.target/rasterize.node: Finished
COPY Release/rasterize.node
make: Leaving directory `/home/jason/src/rasterize/build'
I would expect no output whatsoever from a successful build when the loglevel is set to warn.
Thanks!