Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aphistic/negroni-gomol
Negroni middleware to log with the Gomol log library.
https://github.com/aphistic/negroni-gomol
gomol negroni
Last synced: about 2 months ago
JSON representation
Negroni middleware to log with the Gomol log library.
- Host: GitHub
- URL: https://github.com/aphistic/negroni-gomol
- Owner: aphistic
- License: mit
- Created: 2016-09-30T21:21:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T15:28:31.000Z (almost 8 years ago)
- Last Synced: 2024-10-12T16:19:51.649Z (3 months ago)
- Topics: gomol, negroni
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
negroni-gomol
=============[![GoDoc](https://godoc.org/github.com/aphistic/negroni-gomol?status.svg)](https://godoc.org/github.com/aphistic/negroni-gomol)
[![Build Status](https://img.shields.io/travis/aphistic/negroni-gomol.svg)](https://travis-ci.org/aphistic/negroni-gomol)
[![Code Coverage](https://img.shields.io/codecov/c/github/aphistic/negroni-gomol.svg)](http://codecov.io/github/aphistic/negroni-gomol?branch=master)Negroni middleware to log with the Gomol log library.
Usage
-----
Once gomol is initialized as you'd normally do (see the
[gomol](https://www.github.com/aphistic/gomol) documentation) you can
create the logging middleware for Negroni in one of two ways.The first way is to just use the current default gomol logger, like so:
```
import ng "github.com/aphistic/negroni-gomol"...
n := negroni.New()
n.Use(ng.NewLogger())
```If you have a different gomol Base logger you'd like to use instead, you can
also use it in this way:
```
import ng "github.com/aphistic/negroni-gomol"...
base := gomol.NewBase()
...
n := negroni.New()
n.Use(ng.NewLoggerForBase(base))
```