Explore >> Select a destination


You are here

www.padizio.com
| | paul.totterman.name
9.9 parsecs away

Travel
| | At some point when implementing HTTP APIs, just logging "error" and returning an empty response doesn't cut it anymore. Good practise with REST APIs suggests returning a suitable HTTP status code, i.e. something other than 200 OK.
| | shaneosullivan.wordpress.com
6.4 parsecs away

Travel
| | How to run a clean up script when your NextJS dev server is shut down
| | www.bobdc.com
7.6 parsecs away

Travel
| | My personal quick reference
| | www.milanjovanovic.tech
30.5 parsecs away

Travel
| Structured logging is a practice where you apply the same message format to all of your application logs. The end result is that all your logs will have a similar structure, allowing them to be easily searched and analyzed. Serilog is a popular logging library in .NET, packed with many features. It provides logging to files, logging to the console, and elsewhere. However, why Serilog is unique is because it comes with support for structured logging out of the box. Let's see how we can install Serilog and...