Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
coddmeistr committed Dec 5, 2024
1 parent de31495 commit d0590a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/eventbus/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ init:
}

for msg := range events {
log.Debug("Received a message")
var event pb.Event
err = proto.Unmarshal(msg.Body, &event)
if err != nil {
Expand All @@ -153,6 +152,7 @@ init:
}
continue
}
log.Debug("Received a message", zap.String("routine_key", msg.RoutingKey), zap.Any("event", event))

handler, ok := handlers[event.Key]
if !ok {
Expand Down

0 comments on commit d0590a8

Please sign in to comment.