© 2023 Hashnode
#error-tracking
jQuery is among the most widely used JavaScript libraries making web development faster, easier, and more efficient. The library abstracts away the complexity of using the DOM, allowing developers to …
What is Rollbar Rollbar is a cloud-based error tracking and debugging tool used in web development. It provides real-time monitoring of errors, exceptions, and logs that occur in web applications and…
When we write code, it's common to encounter errors or unexpected behaviors that can cause your program to crash or stop working as intended. One way to handle these issues is by using a "try" and "ca…
While coding we encounter so many different types of errors. These errors often make us scratch our heads. But if we understand why we get those errors and how to solve or avoid them, then our life wi…
Programming errors, also known as bugs, are a common part of the software development process. They can range from simple typos to complex logical errors and can be frustrating to debug. However, with…
Error handling in Nodejs can be a bit tricky especially if you want to go outside the conventional try-catch method. In this article, I am going to be sharing how using the Error Constructor and middl…
In my last post, I covered why you want a clean error log. But the problem is, what if your error log is not visible to the team? An inaccessible error log is not doing anyone any good. Need to SSH in…
What are server Errors and How to Fix Them? Sometimes when you are trying to visit a web page, you are met with an HTTP error message. It's a message from the web server that something went wrong. I…
Have you made a crazy react web app and want others to use it, then host it on the internet and let people make use of your website? This article will use Netlify, a cloud computing company that offer…
In this post, we'll look at how we can use Spring Cloud Sleuth to add trace IDs to our application to track down calls and exceptions. Why Would We Want To Use Correlation IDs? If you've ever worked o…