Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 898 Bytes

File metadata and controls

21 lines (16 loc) · 898 Bytes

Logger CircleCI godoc Coverage Status Go Report Card codebeat badge

Simple logrus wrapper

Example Usage

package main

import (
	log "github.com/codeamp/logger"
)

func main() {
  log.InfoWithFields("hello", log.Fields{
    "world": "earth",
  })

  log.Println("Hello World")
  
  log.Debug("Hello World")
}