You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
615 B
34 lines
615 B
# Mongodb Hooks for [Logrus](https://github.com/Sirupsen/logrus) <img src="http://i.imgur.com/hTeVwmJ.png" width="40" height="40" alt=":walrus:" class="emoji" title=":walrus:"/>
|
|
|
|
## Install
|
|
|
|
```shell
|
|
$ go get github.com/weekface/mgorus
|
|
```
|
|
|
|
## Usage
|
|
|
|
```go
|
|
package main
|
|
|
|
import (
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/weekface/mgorus"
|
|
)
|
|
|
|
func main() {
|
|
log := logrus.New()
|
|
hooker, err := mgorus.NewHooker("localhost:27017", "db", "collection")
|
|
if err == nil {
|
|
log.Hooks.Add(hooker)
|
|
}
|
|
|
|
log.WithFields(logrus.Fields{
|
|
"name": "zhangsan",
|
|
"age": 28,
|
|
}).Error("Hello world!")
|
|
}
|
|
```
|
|
|
|
## License
|
|
*MIT*
|
|
|