repositorypackage
4.0.0+incompatible
Repository: https://github.com/kyani-inc/logger.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
logger
Abstraction layer that takes care of some things from logrus-papertrail-hook and logrus
Usage
package main
import (
"gopkg.in/kyani-inc/logger.v2"
)
func main() {
log := logger.New(logger.Config{
Appname: "test",
Host: "logs.papertrailapp.com",
Port: "1337",
})
log.Info("Hello")
}