We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdf36b1 commit 7c6157cCopy full SHA for 7c6157c
example/index.html
@@ -38,5 +38,6 @@
38
<button onclick="sendEvents(100)">Send 100 random events</button>
39
<button onclick="sendEvents(100, 0)">Send 100 log messages</button>
40
<button onclick="sendEvents(100, 1)">Send 100 exceptions</button>
41
+<button onclick="logClientConfigurationSettings()">Log Client Configuration Settings (settings sent from server)</button>
42
</body>
43
</html>
example/index.js
@@ -42,3 +42,8 @@ function throwIndexOutOfRange(indexer) {
function throwStringErrorImpl(message) {
throw new Error(message);
44
}
45
+
46
+function logClientConfigurationSettings() {
47
+ var client = exceptionless.ExceptionlessClient.default;
48
+ console.log(client.config.settings);
49
+}
0 commit comments