Go Logging

If you write software that runs in production, you likely want to include logging. You could use fmt.Println but I strongly recommend against it. Go has a dedicated, built-in log package. In addition, there are third-party packages offering more features and better performance. Let’s dive into Go logging! Introduction to Logging Before delving into the … Read more