go-utils/utils/log/README.md

55 lines
957 B
Markdown
Raw Permalink Normal View History

2017-06-25 11:05:16 +00:00
# log
golang log library base [logrus](https://github.com/sirupsen/logrus) and [logrus-prefixed-formatter](https://github.com/x-cray/logrus-prefixed-formatter)
2017-06-26 07:35:38 +00:00
# Usage
## 1. Use The glide Package Management
### install [glide](https://github.com/Masterminds/glide#install)
```bash
$ go get github.com/Masterminds/glide
$ cd $GOPATH/src/github.com/Masterminds/glide
$ make setup
```
or
```bash
# Mac OS
$ brew install glide
# Mac or Linux
$ curl https://glide.sh/get | sh
```
[Binary packages](https://github.com/Masterminds/glide/releases) are available for Mac, Linux and Windows.
### install log
```bash
$ go get -u github.com/ehlxr/go-utils
2018-01-24 08:37:57 +00:00
$ cd $GOPATH/src/github.com/ehlxr/go-utils/utils/log
2017-06-26 07:35:38 +00:00
$ glide install
```
## 2. Manually add Dependencies
### add dependencies
```bash
$ go get github.com/sirupsen/logrus
$ go get github.com/x-cray/logrus-prefixed-formatter
```
### install log
```bash
$ go get -u github.com/ehlxr/go-utils
```