Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orlovevgeny/logger
easy logger golang mini module
https://github.com/orlovevgeny/logger
golang-library log logger logger-backend module
Last synced: about 1 month ago
JSON representation
easy logger golang mini module
- Host: GitHub
- URL: https://github.com/orlovevgeny/logger
- Owner: OrlovEvgeny
- License: mit
- Created: 2018-11-06T13:43:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-16T22:38:40.000Z (over 5 years ago)
- Last Synced: 2023-07-27T22:26:59.243Z (over 1 year ago)
- Topics: golang-library, log, logger, logger-backend, module
- Language: Go
- Homepage: https://godoc.org/github.com/OrlovEvgeny/logger
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Easy logger
[![Build Status](https://travis-ci.org/OrlovEvgeny/logger.svg?branch=master)](https://travis-ci.org/OrlovEvgeny/logger)
[![Go Report Card](https://goreportcard.com/badge/github.com/OrlovEvgeny/logger?v1)](https://goreportcard.com/report/github.com/OrlovEvgeny/logger)
[![GoDoc](https://godoc.org/github.com/OrlovEvgeny/logger?status.svg)](https://godoc.org/github.com/OrlovEvgeny/logger)easy logger golang mini module
# Use
````go
//New return *log.Logger (https://godoc.org/log#Logger)
log := logger.New(&logger.Config{
AppName: "you application name",
Debug: true,
LogFile: "./error.log",
})log.Println("custom Error message")
````# License:
[MIT](LICENSE)