We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62bfe99 commit 9717191Copy full SHA for 9717191
2 files changed
src/node/middlewares.ts
@@ -134,6 +134,7 @@ const handleException = async (
134
stack: error.stack as string,
135
catchType: req ? CatchType.MIDDLEWARE : CatchType.INTERNAL,
136
options,
137
+ sdk: "NodeJS"
138
};
139
140
if (req !== undefined) {
src/transport/events.ts
@@ -32,4 +32,5 @@ export interface KlepperEvent {
32
priority?: ExceptionPriority;
33
tag?: string;
34
35
+ sdk: string;
36
}
0 commit comments