Skip to content

Commit

Permalink
依赖组件升级&日志配置小写
Browse files Browse the repository at this point in the history
  • Loading branch information
wanglongfei committed Sep 26, 2020
1 parent 2bcb8bc commit f509a30
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 36 deletions.
14 changes: 7 additions & 7 deletions conf/conf.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ port=11900

[Log]
; LogPath : /home/logs/
LogPath=/home/logs/odin/odin.log
logPath=/home/logs/odin/odin.log
; level :DEBUG/INFO/WARNING/ERROR
Level=DEBUG
level=DEBUG
; RotateLines 1K/1M
RotateLines=0K
rotateLines=0K
; RotateSize 1M/1G
RotateSize=0M
; RotateDaily true/false
RotateHourly=true
rotateSize=0M
; RotateHourly true/false
rotateHourly=true
; Retention
Retention=48
retention=48


[Registry]
Expand Down
14 changes: 7 additions & 7 deletions conf/conf_dev.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ port=11900

[Log]
; LogPath : /home/logs/
LogPath=/home/logs/odin/odin.log
logPath=/home/logs/odin/odin.log
; level :DEBUG/INFO/WARNING/ERROR
Level=DEBUG
level=DEBUG
; RotateLines 1K/1M
RotateLines=0K
rotateLines=0K
; RotateSize 1M/1G
RotateSize=0M
; RotateHoury true/false
RotateHoury=true
rotateSize=0M
; RotateHourly true/false
rotateHourly=true
; Retention
Retention=48
retention=48


[Registry]
Expand Down
14 changes: 7 additions & 7 deletions conf/conf_online.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ port=11900

[Log]
; LogPath : /home/logs/
LogPath=/home/logs/odin/odin.log
logPath=/home/logs/odin/odin.log
; level :DEBUG/INFO/WARNING/ERROR
Level=DEBUG
level=DEBUG
; RotateLines 1K/1M
RotateLines=0K
rotateLines=0K
; RotateSize 1M/1G
RotateSize=0M
; RotateHoury true/false
RotateHoury=true
rotateSize=0M
; RotateHourly true/false
rotateHourly=true
; Retention
Retention=48
retention=48


[Registry]
Expand Down
14 changes: 7 additions & 7 deletions conf/conf_release.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ port=11900

[Log]
; LogPath : /home/logs/
LogPath=/home/logs/odin/odin.log
logPath=/home/logs/odin/odin.log
; level :DEBUG/INFO/WARNING/ERROR
Level=DEBUG
level=DEBUG
; RotateLines 1K/1M
RotateLines=0K
rotateLines=0K
; RotateSize 1M/1G
RotateSize=0M
; RotateHoury true/false
RotateHoury=true
rotateSize=0M
; RotateHourly true/false
rotateHourly=true
; Retention
Retention=48
retention=48


[Registry]
Expand Down
14 changes: 6 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
module odin

go 1.12

replace github.com/smallnest/rpcx v0.0.0 => github.com/smallnest/rpcx v0.0.0-20200214051052-c65a6415f3d1

require (
git.100tal.com/wangxiao_go_lib/microCommon v1.0.8 // indirect
github.com/abronan/valkeyrie v0.0.0-20200127174252-ef4277a138cd // indirect
github.com/aliyun/alibaba-cloud-sdk-go v1.61.69 // indirect
github.com/anacrolix/envpprof v1.1.0 // indirect
Expand Down Expand Up @@ -42,13 +39,13 @@ require (
github.com/spf13/cast v1.3.1
github.com/streadway/handy v0.0.0-20200128134331-0f66f006fb2e // indirect
github.com/tal-tech/connPool v0.0.0-20200806112113-738c408fe6ae // indirect
github.com/tal-tech/hera v0.0.0-20200807103530-dd689e514981
github.com/tal-tech/loggerX v0.0.0-20200806121626-bc3db51db258
github.com/tal-tech/hera v1.0.0
github.com/tal-tech/loggerX v1.0.0
github.com/tal-tech/odinPlugin v0.0.0-20200807094654-094a1edd2a60
github.com/tal-tech/routinePool v0.0.0-20200806121001-477db7bdba8a // indirect
github.com/tal-tech/torm v0.0.0-20200806135310-06840940369a
github.com/tal-tech/xredis v0.0.0-20200806132427-7807ee6297d9
github.com/tal-tech/xtools v0.0.0-20200827070525-4842d161be6a
github.com/tal-tech/torm v1.0.0
github.com/tal-tech/xredis v1.0.0
github.com/tal-tech/xtools v0.0.0-20200925092432-5d398cc834e0
github.com/templexxx/xor v0.0.0-20191217153810-f85b25db303b // indirect
github.com/tjfoc/gmsm v1.3.0 // indirect
github.com/toolkits/file v0.0.0-20160325033739-a5b3c5147e07 // indirect
Expand All @@ -58,6 +55,7 @@ require (
github.com/xtaci/kcp-go v5.4.20+incompatible // indirect
github.com/xtaci/lossyconn v0.0.0-20200209145036-adba10fffc37 // indirect
go.opencensus.io v0.22.3 // indirect
golang.org/x/build v0.0.0-20190111050920-041ab4dc3f9d // indirect
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
)

0 comments on commit f509a30

Please sign in to comment.