We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2367b3 commit 7748f55Copy full SHA for 7748f55
example/svelte-kit/src/hooks.client.js
@@ -3,6 +3,9 @@ import { Exceptionless } from "@exceptionless/browser";
3
Exceptionless.startup(c => {
4
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw";
5
c.serverUrl = "http://localhost:5000";
6
+ c.useDebugLogger();
7
+
8
+ c.defaultTags.push("Example", "svelte-kit", "client");
9
});
10
11
/** @type {import('@sveltejs/kit').HandleClientError} */
example/svelte-kit/src/hooks.server.js
@@ -3,6 +3,9 @@ import { Exceptionless } from "@exceptionless/node";
+ c.defaultTags.push("Example", "svelte-kit", "server");
/** @type {import('@sveltejs/kit').HandleServerError} */
0 commit comments