Skip to content

Commit 4ab2be5

Browse files
author
Guy Baron
authored
Merge pull request #98 from wework/fixdoc
Adding and fixing documentation issues
2 parents 5cf1e58 + f402f8b commit 4ab2be5

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ A lightweight transactional message bus on top of RabbitMQ supporting:
2020
4) Publisher confirms
2121
5) [Reliable messaging](https://github.com/wework/grabbit/blob/master/docs/OUTBOX.md) and local service transactivity via Transaction Outbox pattern
2222
6) Deadlettering
23+
7) [Structured logging](https://github.com/wework/grabbit/blob/master/docs/LOGGING.md)
2324

2425
Planned:
2526

2627
1) Deduplication of inbound messages
2728

2829
## Stable release
29-
the v1.x branch contains the latest stable releases of grabbit and one should track that branch to get point and minor release updates.
30+
the v1.x branch contains the latest stable releases of grabbit and one should track that branch to get point and minor release updates.
3031

3132
## Supported transactional resources
3233
1) MySql > 8.0 (InnoDB)
@@ -78,8 +79,8 @@ Register a command handler
7879
```Go
7980

8081

81-
handler := func(invocation gbus.Invocation, message *gbus.BusMessage) error
82-
cmd, ok := message.Payload.(SomeCommand)
82+
handler := func(invocation gbus.Invocation, message *gbus.BusMessage) error{
83+
cmd, ok := message.Payload.(*SomeCommand)
8384
if ok {
8485
fmt.Printf("handler invoked with message %v", cmd)
8586
return nil
@@ -96,7 +97,7 @@ Register an event handler
9697

9798

9899
eventHandler := func(invocation gbus.Invocation, message *gbus.BusMessage) {
99-
evt, ok := message.Payload.(SomeEvent)
100+
evt, ok := message.Payload.(*SomeEvent)
100101
if ok {
101102
fmt.Printf("handler invoked with event %v", evt)
102103
return nil

docs/LOGGING.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Logging
2+
3+
grabbit supports structured logging via the [logrus](https://github.com/sirupsen/logrus) logging package.
4+
The logger is accessible to message handlers via the past in invocation instance.
5+
6+
```go
7+
8+
func SomeHandler(invocation gbus.Invocation, message *gbus.BusMessage) error{
9+
invocation.Log().WithField("name", "rhinof").Info("handler invoked")
10+
return nil
11+
}
12+
13+
```
14+
15+
grabbit will create a default instance of logrus FieldLogger if no such logger is set when the bus is created.
16+
In order to set a custom logger when creating the bus you need to call the Builder.WithLogger method passing it
17+
a logrus.FieldLogger instance.
18+
19+
```go
20+
21+
22+
```

0 commit comments

Comments
 (0)