Initial release of adaptlog
Almost every application logs data one way or another. There are a plethora of logging packages available for golang. There is the one that comes with the standard packages which takes a simple approach. There are many logging packages that follow the well established leveled approach, and there are really a lot of them. The decision of choosing a specific library comes with the cost of a direct dependency. But why should we depend directly on a specific package? How painful is it to exchange a logging package for another when we already created a lot of code with a direct dependency? This is the reason why apaptlog came to life. ...