- update log

master v1.0.18
李光春 2 years ago
parent fcb1cc8b59
commit faa2bc0583

@ -35,11 +35,11 @@ type Client struct {
appSecret string // secret
}
log struct {
gormClient *dorm.GormClient // 日志数据库
gorm bool // 日志开关
gormClient *dorm.GormClient // 日志数据库
logGormClient *golog.ApiClient // 日志服务
mongoClient *dorm.MongoClient // 日志数据库
mongo bool // 日志开关
mongoClient *dorm.MongoClient // 日志数据库
logMongoClient *golog.ApiClient // 日志服务
}
}
@ -57,7 +57,7 @@ func NewClient(config *ClientConfig) (*Client, error) {
c.requestClient = gorequest.NewHttp()
gormClient := config.GormClientFun()
if gormClient.Db != nil {
if gormClient != nil && gormClient.Db != nil {
c.log.logGormClient, err = golog.NewApiGormClient(func() (*dorm.GormClient, string) {
return gormClient, logTable
}, config.Debug)
@ -65,11 +65,11 @@ func NewClient(config *ClientConfig) (*Client, error) {
return nil, err
}
c.log.gorm = true
c.log.gormClient = gormClient
}
c.log.gormClient = gormClient
mongoClient, databaseName := config.MongoClientFun()
if mongoClient.Db != nil {
if mongoClient != nil && mongoClient.Db != nil {
c.log.logMongoClient, err = golog.NewApiMongoClient(func() (*dorm.MongoClient, string, string) {
return mongoClient, databaseName, logTable
}, config.Debug)
@ -77,8 +77,8 @@ func NewClient(config *ClientConfig) (*Client, error) {
return nil, err
}
c.log.mongo = true
c.log.mongoClient = mongoClient
}
c.log.mongoClient = mongoClient
xip := goip.GetOutsideIp(context.Background())
if xip != "" && xip != "0.0.0.0" {

@ -12,4 +12,4 @@ const (
logTable = "wikeyun"
)
const Version = "1.0.17"
const Version = "1.0.18"

@ -31,10 +31,10 @@ func (c *Client) request(ctx context.Context, url string, params map[string]inte
}
// 日志
if c.log.gorm == true {
if c.log.gorm {
go c.log.logGormClient.GormMiddleware(ctx, request, Version)
}
if c.log.mongo == true {
if c.log.mongo {
go c.log.logMongoClient.MongoMiddleware(ctx, request, Version)
}

Loading…
Cancel
Save