modulepackage
0.0.4
Repository: https://github.com/mitz-it/golang-logging.git
Documentation: pkg.go.dev
# README
Go - Logging
Abstraction over zero for logging.
Installation
go get -u github.com/mitz-it/golang-logging
Usage 1
package main
import "github.com/mitz-it/golang-logging"
func main() {
logger := logging.NewLogger()
msg := "world"
logger.Standard.Info().Msgf("hello %s", world)
}
Usage 2
package main
import "github.com/mitz-it/golang-logging"
func main() {
msg := "world"
logger.Log.Standard.Info().Msgf("hello %s", world)
}
# Functions
No description provided by the author
# Variables
No description provided by the author