0
リンクで明示的に実装されています。Restifyでレイヴンを実装する方法は?
https://docs.sentry.io/clients/node/integrations/express/
が、それはrestifyに実装されていません。
https://github.com/getsentry/raven-node/issues/287
感謝。
リンクで明示的に実装されています。Restifyでレイヴンを実装する方法は?
https://docs.sentry.io/clients/node/integrations/express/
が、それはrestifyに実装されていません。
https://github.com/getsentry/raven-node/issues/287
感謝。
これで完了しました。 restify 6.0.1
var Raven = require("raven");
Raven.config("--yourdsnofraven--").install();
when server created add this `handleUncaughtExceptions`.
global.server = restify.createServer({
handleUncaughtExceptions: true
});
// capture error here
server.on("uncaughtException", function (req, res, route, err) {
"use strict";
console.log("i caught it!");
Raven.captureException(err, {req: req});
res.send(new httpErrors.InternalServerError(CONFIG.error_message.INTERNAL_SERVER_ERROR));
});