Questions tagged [stacktrace.js]

Framework-agnostic, micro-library for getting stack traces in all web browsers.

About

stacktrace.js uses browsers' Error.stack mechanism to generate stack traces, parses them, enhances them with source maps and uses Promises to return an Array of StackFrames.

Links

17 questions
0
votes
1 answer

How can I get readable stacktrace while using webpack? Tried stacktrace.js

I am using webpack with "devtool: nosources-source-map" in order to create a bundle that includes my javascript codes. But I also need to log the stack trace when an error occures. I need to log trace as it shows on browser console: But in the end…
Mesut Can
  • 291
  • 2
  • 5
  • 19
0
votes
0 answers

How to get parse of Caused by of java logs in Logstash grok-filter?

Below is my config file: filter { if [type] == "syslog" { multiline { pattern => "^%{TIMESTAMP_ISO8601}" negate => true what => "previous" max_age => 7 add_tag => [ "multiline" ] …
b.bab
  • 9
  • 3
1
2