Code Review: Writing JavaScript error logs
I often see JavaScript code that looks like: That’s a pretty big no-no because the only way to know where that error came from is from the error traceback. Tracebacks are hard to read, and you’re assuming that your traceback will even make it to your final logs. You may lose it via truncation or…
Read More Code Review: Writing JavaScript error logs