Skip to content

Commit

Permalink
use sfgrp/lognsq for NSQ logger
Browse files Browse the repository at this point in the history
  • Loading branch information
dimus committed Feb 1, 2022
1 parent 40d0ff3 commit e9f82fe
Show file tree
Hide file tree
Showing 6 changed files with 253 additions and 88 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## [v1.6.1]

- Add: use NSQ logger from sfgrp/lognsq

## [v1.6.0]

- Add [#218]: enable/disable logs for web-services, allow logs aggregation
Expand Down Expand Up @@ -364,6 +368,7 @@ array of names instead of a stream.

This document follows [changelog guidelines]

[v1.6.1]: https://github.com/gnames/gnparser/compare/v1.6.0...v1.6.1
[v1.6.0]: https://github.com/gnames/gnparser/compare/v1.5.7...v1.6.0
[v1.5.7]: https://github.com/gnames/gnparser/compare/v1.5.6...v1.5.7
[v1.5.6]: https://github.com/gnames/gnparser/compare/v1.5.5...v1.5.6
Expand Down
31 changes: 16 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,57 +5,58 @@ go 1.17
require (
github.com/dustin/go-humanize v1.0.0
github.com/gnames/gnfmt v0.2.0
github.com/gnames/gnlib v0.7.0
github.com/gnames/gnlib v0.8.0
github.com/gnames/gnsys v0.2.2
github.com/gnames/gnuuid v0.1.1
github.com/gnames/organizer v0.1.1
github.com/gnames/tribool v0.1.1
github.com/labstack/echo/v4 v4.6.1
github.com/labstack/gommon v0.3.0
github.com/labstack/echo/v4 v4.6.3
github.com/labstack/gommon v0.3.1
github.com/pointlander/peg v1.0.1
github.com/rendon/testcli v1.0.0
github.com/spf13/cobra v1.2.1
github.com/sfgrp/lognsq v0.1.1
github.com/spf13/cobra v1.3.0
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20211020060615-d418f374d309
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
golang.org/x/perf v0.0.0-20211012211434-03971e389cd3
golang.org/x/tools v0.1.7
golang.org/x/tools v0.1.9
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mitchellh/mapstructure v1.4.2 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nsqio/go-nsq v1.1.0 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/pointlander/compress v1.1.1-0.20190518213731-ff44bd196cc3 // indirect
github.com/pointlander/jetset v1.0.1-0.20190518214125-eee7eff80bd4 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/afero v1.8.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.9.0 // indirect
github.com/spf13/viper v1.10.1 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 // indirect
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/ini.v1 v1.63.2 // indirect
gopkg.in/ini.v1 v1.66.3 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
Loading

0 comments on commit e9f82fe

Please sign in to comment.