Categorygithub.com/spacetab-io/logs-gin-go
modulepackage
1.0.2
Repository: https://github.com/spacetab-io/logs-gin-go.git
Documentation: pkg.go.dev

# README

logs-gin-go

Logger fo gin gonic

Usage

Pass logrus instance to constructor.

package main

import (
	"github.com/gin-gonic/gin"
	ginLogger "github.com/spacetab-io/logs-gin-go"
)

func main() {
	r := gin.New()
	r.Use(ginLogger.NewLogger(logrus.New()), gin.Recovery())

	// pingpong
	r.GET("/ping", func(c *gin.Context) {
		c.Data(200, "text/plain", []byte("pong"))
	})
	_ = r.Run("127.0.0.1:8080")
}

Licence

The software is provided under MIT Licence.

# Functions

NewLogger logs gin gonic actions.