70 lines
3.1 KiB
JavaScript
70 lines
3.1 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "createErrorHandler", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return createErrorHandler;
|
|
}
|
|
});
|
|
const _hooksservercontext = require("../../client/components/hooks-server-context");
|
|
const _stringhash = /*#__PURE__*/ _interop_require_default(require("next/dist/compiled/string-hash"));
|
|
const _formatservererror = require("../../lib/format-server-error");
|
|
const _notfound = require("../../client/components/not-found");
|
|
const _redirect = require("../../client/components/redirect");
|
|
const _nossrerror = require("../../shared/lib/lazy-dynamic/no-ssr-error");
|
|
const _tracer = require("../lib/trace/tracer");
|
|
function _interop_require_default(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
function createErrorHandler({ /**
|
|
* Used for debugging
|
|
*/ _source, dev, isNextExport, errorLogger, capturedErrors, allCapturedErrors }) {
|
|
return (err)=>{
|
|
var _err_message;
|
|
if (allCapturedErrors) allCapturedErrors.push(err);
|
|
if (err && (err.digest === _hooksservercontext.DYNAMIC_ERROR_CODE || (0, _notfound.isNotFoundError)(err) || err.digest === _nossrerror.NEXT_DYNAMIC_NO_SSR_CODE || (0, _redirect.isRedirectError)(err))) {
|
|
return err.digest;
|
|
}
|
|
// Format server errors in development to add more helpful error messages
|
|
if (dev) {
|
|
(0, _formatservererror.formatServerError)(err);
|
|
}
|
|
// Used for debugging error source
|
|
// console.error(_source, err)
|
|
// Don't log the suppressed error during export
|
|
if (!(isNextExport && (err == null ? void 0 : (_err_message = err.message) == null ? void 0 : _err_message.includes("The specific message is omitted in production builds to avoid leaking sensitive details.")))) {
|
|
// Record exception in an active span, if available.
|
|
const span = (0, _tracer.getTracer)().getActiveScopeSpan();
|
|
if (span) {
|
|
span.recordException(err);
|
|
span.setStatus({
|
|
code: _tracer.SpanStatusCode.ERROR,
|
|
message: err.message
|
|
});
|
|
}
|
|
if (errorLogger) {
|
|
errorLogger(err).catch(()=>{});
|
|
} else {
|
|
// The error logger is currently not provided in the edge runtime.
|
|
// Use `log-app-dir-error` instead.
|
|
// It won't log the source code, but the error will be more useful.
|
|
if (process.env.NODE_ENV !== "production") {
|
|
const { logAppDirError } = require("../dev/log-app-dir-error");
|
|
logAppDirError(err);
|
|
}
|
|
if (process.env.NODE_ENV === "production") {
|
|
console.error(err);
|
|
}
|
|
}
|
|
}
|
|
capturedErrors.push(err);
|
|
// TODO-APP: look at using webcrypto instead. Requires a promise to be awaited.
|
|
return (0, _stringhash.default)(err.message + err.stack + (err.digest || "")).toString();
|
|
};
|
|
}
|
|
|
|
//# sourceMappingURL=create-error-handler.js.map
|