go get github.com/DinnieJ/loggerCheck the sample code in _example folders
You can write your own logger by implementing the Logger interface
Example
package main
import (
"github.com/DinnieJ/logger"
)
// This example will be updated, i'm too lazy rn, sorry
type MyLogger struct {
// your logger implementation
}
func (l *MyLogger) Info(msg string) {
// your logger implementation
}The project is licensed under the MIT License.