Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コマンドラインからノードを起動するときに、ノードのログレベルをどのように設定しますか?私はnode.jsの初心者ですが、次のようなものを探していますnode myapp.js --loglevel warn
node myapp.js --loglevel warn
おそらくあなたが求めているものとはまったく異なりますが、最初に NODE_DEBUG 環境変数を設定することにより、ノード内でデバッグを有効にすることができます。
たとえばexport NODE_DEBUG="net" && node myapp.js、ネットワーク関連のノード操作のデバッグを行います。
export NODE_DEBUG="net" && node myapp.js
https://github.com/joyent/node/blob/master/lib/net.js#L66