Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit 39ac412

Browse files
committed
bump to v1.6.23
Signed-off-by: Hedzr Yeh <hedzrz@gmail.com>
1 parent 90d794a commit 39ac412

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ an enhancement for [logrus](https://github.com/sirupsen/logrus). `logex` attache
4242

4343
## History
4444

45+
- v1.6.23
46+
- upgraded deps
47+
48+
- v1.6.21
49+
- upgraded deps
50+
4551
- v1.6.19
4652
- upgraded deps
4753

doc.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const (
99
// AppName const
1010
AppName = "logex"
1111
// Version const
12-
Version = "1.6.21"
12+
Version = "1.6.23"
1313
// VersionInt const
14-
VersionInt = 0x010615
14+
VersionInt = 0x010617
1515
)

logex_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"os"
55
"testing"
66

7+
"github.com/hedzr/log"
78
"github.com/hedzr/log/dir"
89
"github.com/hedzr/log/states"
910
"gopkg.in/hedzr/errors.v3"
@@ -69,3 +70,7 @@ func TestReadWriteFile(t *testing.T) {
6970
t.Fatalf("read file content not ok")
7071
}
7172
}
73+
74+
func TestLog1(t *testing.T) {
75+
log.Warn(1, 2, 3)
76+
}

0 commit comments

Comments
 (0)