mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-27 21:58:43 +08:00
40 lines
986 B
Go
40 lines
986 B
Go
|
package queue
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/bufanyun/hotgo/app/consts"
|
||
|
"github.com/gogf/gf/v2/frame/g"
|
||
|
"github.com/gogf/gf/v2/util/gconv"
|
||
|
)
|
||
|
|
||
|
|
||
|
// 消费日志
|
||
|
func ConsumerLog(ctx context.Context, topic string, mqMsg MqMsg, err error) {
|
||
|
|
||
|
if err != nil {
|
||
|
g.Log(consts.QueueLogPath).Error(ctx, "消费 ["+topic+"] 失败", mqMsg, err)
|
||
|
} else {
|
||
|
g.Log(consts.QueueLogPath).Print(ctx, "消费 ["+topic+"] 成功", mqMsg.MsgId)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 生产日志
|
||
|
func ProducerLog(ctx context.Context, topic string, data interface{}, err error) {
|
||
|
|
||
|
if err != nil {
|
||
|
g.Log(consts.QueueLogPath).Error(ctx, "生产 ["+topic+"] 失败", gconv.String(data))
|
||
|
} else {
|
||
|
g.Log(consts.QueueLogPath).Print(ctx, "生产 ["+topic+"] 成功", gconv.String(data))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 致命日志
|
||
|
func FatalLog(ctx context.Context, text string, err error) {
|
||
|
g.Log(consts.QueueLogPath).Fatal(ctx, text+":", err)
|
||
|
}
|
||
|
|
||
|
// 通用
|
||
|
func Log(ctx context.Context, text string) {
|
||
|
g.Log(consts.QueueLogPath).Print(ctx, text)
|
||
|
}
|