私はnodejsにかなり慣れていないので、私がやろうとしていることをもう少し詳しく説明します。
私はウェブサーバーを持っています。リクエストが失敗した場合、その例外のスタック トレースをログに記録したいのですが、エラー ページを配信してサーバーをクラッシュさせないようにします。
例として、リクエストを処理する関数:
var Q = require('q');
var requestHandler = function () {
// Here I get the data etc. that was requested. As this is not important, just a dummy here
Q.resolve()
// Now I answer the request
.then(function (data) {
// Dummy Code representing the sending of a response
console.log('sending response …');
console.log('oh no! an exception');
// Now an Exception occurs
throw new Error('You did something wrong!');
})
// If there was any error, show the error page instead
.fail(function (err) {
// Dummy Code representing the sending of the error page
console.log('sending error page');
// Additionally I want to write the error into a log file
console.error('You had an error: ', err);
})
// If there was an error in the .fail-handler, I deserve the server to crash
.done();
};
// A request comes in, I want to call my handler
requestHandler();
コンソールの出力:
sending response …
oh no! an exception
sending error page
You had an error: [Error: You did something wrong!]
スタック トレースにアクセスする方法がわかりません。しかし、.fail-handler で例外をスローすると (または完全な .fail-handler を省略すると)、コンソールにスタック トレースが表示されます (ただし、サーバーを再起動する必要があります)。
だから私は私の質問は次のとおりだと思います:
promise 失敗ハンドラーでスタックトレースにアクセスするにはどうすればよいですか?
編集:もちろん、説明を改善する方法に関するヒントは大歓迎です。私が自分自身を明確にしていない場合は、私に知らせてください。