Giter Site home page Giter Site logo

logging-go's Introduction

logging

  • wrap for zap
  • init from viper
  • log level of each module is set independently

usage

require (
	github.com/izern/logging latest
)

replace github.com/izern/logging latest => github.com/izern/logging-go latest

Quick Start

first, init viper, example yaml

logging:
  #  DEBUG
  #  INFO
  #  WARN
  #  ERROR
  #  PANIC
  #  FATAL
  level:
    root: INFO    # default INFO
    module1.child1: DEBUG
    module1.child2: INFO
    module2: ERROR
  encoding: json # json or console, default json. only encoding, console is plan text encoding
  encoder:
    TimeKey: time
    LevelKey: level
    NameKey: logger
    CallerKey: caller
    MessageKey: msg
    StacktraceKey: stacktrace
  output: # default is console
    console: # console or file. console is output on TTY
      async: false # async output,default false
    file:
      path: /tmp/golang/log.log
      async: false # async output,default false

and init viper

  gopath, b := os.LookupEnv("GOPATH")
  assert.Truef(t, b, "no GOPATH ENV")
  viper.SetConfigFile(gopath + "/src/github.com/izern/logging-go/config.yaml")
  err := viper.ReadInConfig()

then init logging, and get logger

  InitZapLoggerFromViper(viper.GetViper())
  log := GetLogger("module1.child1")
  log = GetLogger("module1.child1.child")
  log = GetLogger("test")

enjoy~ beginning your APP

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.