# log4go **Repository Path**: grey-hat/log4go ## Basic Information - **Project Name**: log4go - **Description**: https://github.com/AlexStocks/log4go log 4 go - **Primary Language**: Go - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-02 - **Last Updated**: 2022-06-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # log4go --- [![Build Status](https://travis-ci.org/AlexStocks/log4go.svg?branch=master)](https://travis-ci.org/AlexStocks/log4go) [![codecov](https://codecov.io/gh/AlexStocks/log4go/branch/master/graph/badge.svg)](https://codecov.io/gh/AlexStocks/log4go) [![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square)](https://pkg.go.dev/github.com/AlexStocks/log4go?tab=doc) [![Go Report Card](https://goreportcard.com/badge/github.com/alexstocks/log4go)](https://goreportcard.com/report/github.com/alexstocks/log4go) ![license](https://img.shields.io/badge/license-Apache--2.0-green.svg) Please see http://log4go.googlecode.com/ for more log4go usages. My personal package (github.com/AlexStocks/goext/log) wrappered log4go functions further more which provides the most powerful log4go. Installation: - Run `go get -u -v github.com/AlexStocks/log4go` Usage: - Add the following import: ``` Go import l4g "github.com/AlexStocks/log4go" func main() { defer l4g.Close() // to close l4g.Global } ``` ### get logger #### Global logger ```go import l4g "github.com/alecthomas/log4go" l4g.Info("hello world") defer l4g.Close() ``` #### NewDefaultLogger ```go log := l4g.NewDefaultLogger(l4g.INFO) log.Info("hello world") defer log.Close() ``` #### l4g.Logger ```go log := make(l4g.Logger) defer log.Close() log.AddFilter("stdout", l4g.DEBUG, l4g.NewConsoleLogWriter()) log.Info("hello world") ``` ## output log ```go l4g.Finest() l4g.Fine() l4g.Debug() l4g.Trace() l4g.Info() l4g.Warning() l4g.Error() l4g.Critical() ``` ## UserGuide ### Level ```go FINEST FINE DEBUG TRACE INFO WARNING ERROR CRITICAL ``` Feature list: * Output colorful terminal log string by log level * Output json log * Add maxbackup choice in examples.xml to delete out of date log file * Output escape query string safety * Add filename to every log line * Create log path if log path does not exist * Add caller option to let log4go do not output file/function-name/line-number * Add %P to output process ID * Rotate log file daily/hourly * Support json/xml/yml configuration file