Code Monkey home page Code Monkey logo

gslog-logrus's Introduction

gslog-logrus

gslog backend based on logrus library

Example

package main

import (
	"fmt"
	"time"

	"github.com/hindsights/gslog"
	"github.com/hindsights/gslog-logrus/gslogrus"
	"github.com/sirupsen/logrus"
)

func main() {
	fmt.Println("test")

	logrusLogger := logrus.New()
	logrusLogger.SetFormatter(&logrus.TextFormatter{
		DisableColors:  true,
		FullTimestamp:  true,
		DisableSorting: true,
	})
	logrusLogger.SetLevel(logrus.DebugLevel)
	gslog.SetBackend(gslogrus.NewBackend(logrusLogger))
	gslog.Info("gs-hello")
	gslog.Warn("start")
	logger := gslog.GetSugaredLogger("app")
	flogger := gslog.GetLogger("app")

	flogger.Int("int", 1).Debug("debug")
	flogger.Int("abc", 234).Info("info")
	flogger.Bool("bool", true).Warn("warn")
	flogger.Bool("bool", false).Error("error")
	flogger.Str("val", "val2").Log(gslog.LogLevelDebug, "log debug")
	time.Sleep(time.Second)
	logger.Debug("debug", "name")
	logger.Info("info", "value")
	logger.Warn("warn", 20)
	logger.Error("error", 100)
	logger.Debugf("debugf %s", "name")
	logger.Infof("infof %s", "value")
	logger.Warnf("warnf %d", 20)
	logger.Errorf("errorf %v", 100)
	time.Sleep(time.Second * 3)
}

gslog-logrus's People

Contributors

hindsights avatar

Watchers

James Cloos avatar  avatar

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.