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));
});