Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
Updated to new validator import, updated alog import path
Browse files Browse the repository at this point in the history
  • Loading branch information
benjivesterby committed Aug 7, 2021
1 parent cdadf63 commit e99d421
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ linters:
- gocyclo
- gofmt
- goimports
- golint
- revive
- gomnd
- goprintffuncname
- gosec
Expand All @@ -94,7 +94,7 @@ linters:
- noctx
- nolintlint
- rowserrcheck
- scopelint
- exportloopref
- staticcheck
- structcheck
- stylecheck
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Fully concurrent, non-IO blocking Logger for Go

[![CI](https://github.com/devnw/alog/actions/workflows/build.yml/badge.svg)](https://github.com/devnw/alog/actions)
[![Go Report Card](https://goreportcard.com/badge/devnw.com/alog)](https://goreportcard.com/report/devnw.com/alog)
[![Go Report Card](https://goreportcard.com/badge/go.devnw.com/alog)](https://goreportcard.com/report/go.devnw.com/alog)
[![codecov](https://codecov.io/gh/devnw/alog/branch/main/graph/badge.svg)](https://codecov.io/gh/devnw/alog)
[![Go Reference](https://pkg.go.dev/badge/devnw.com/alog.svg)](https://pkg.go.dev/devnw.com/alog)
[![Go Reference](https://pkg.go.dev/badge/go.devnw.com/alog.svg)](https://pkg.go.dev/go.devnw.com/alog)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)

Expand All @@ -12,7 +12,7 @@
Installation:

```go
go get -u devnw.com/alog
go get -u go.devnw.com/alog
```

## alog
Expand Down
2 changes: 1 addition & 1 deletion alog.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"sync"
"time"

"devnw.com/validator"
"go.devnw.com/validator"
)

// TODO: Setup so that new destinations can be added at runtime (chan Dest)
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module devnw.com/alog
module go.devnw.com/alog

go 1.14
go 1.16

require (
devnw.com/validator v1.0.4
github.com/google/go-cmp v0.5.6
go.devnw.com/validator v1.0.5
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
devnw.com/validator v1.0.4 h1:pSe5CoV9gPEjWDU0c0JUilY6m2+jCma8oI9HXYP2EYw=
devnw.com/validator v1.0.4/go.mod h1:Z9GH0cjDxgmcAvpAh74ZRkmoB9OIroKFGboNa+Q3L3g=
github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
go.devnw.com/validator v1.0.5 h1:MGqPC/BL/OE1tqdkoA0f+7+JBZiEl4QYCVbciaj5OJo=
go.devnw.com/validator v1.0.5/go.mod h1:5kfqytQCBGTupXx1ZoIfV97qvKtsAi6lt2HfmvjWa6A=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
2 changes: 1 addition & 1 deletion init.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync"
"time"

"devnw.com/validator"
"go.devnw.com/validator"
)

// LogFmt is the logging format
Expand Down

0 comments on commit e99d421

Please sign in to comment.