Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/ logrus Public
forked from sirupsen/logrus

DEPRECATED, Please refer to gogap/logrus_mate

License

Notifications You must be signed in to change notification settings

gogap/logrus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

367 Commits

Repository files navigation

logrus


DEPRECATED

Please refer to https://github.com/gogap/logrus_mate

example

package main
import (
	log "github.com/gogap/logrus"
	"github.com/gogap/logrus/hooks/file"
	"github.com/gogap/logrus/hooks/graylog"
)
func main() {
	log.SetFormatter(&log.JSONFormatter{})
	//输出到graylog
	glog, err := graylog.NewHook("boot2docker:9001", "yijifu", nil)
	if err != nil {
		log.Error(err)
		return
	}
	log.AddHook(glog)
	//输出到文件
	log.AddHook(file.NewHook("logs/ss.log"))
	
	//yijifu组件中的member模块的日志
	log.WithField("biz", "member").Errorf("member not login,member is %s", "1001")
}

log in file example

2015年06月29日 15:24:52 [ERROR] member not login,member is 1001
github.com/gogap/test_case/logrus.go:23[biz:membe]

log on gray log example

picture

About

DEPRECATED, Please refer to gogap/logrus_mate

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%

AltStyle によって変換されたページ (->オリジナル) /