This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

refactor: move displaying of message into (Message).String()

+5 -1
+4
messages.go
··· 84 84 } 85 85 return out 86 86 } 87 + 88 + func (msg Message) String() string { 89 + return fmt.Sprintf("%-10s | %-10s on %s", msg.Id, msg.Event, msg.ChurrosObjectId) 90 + }
+1 -1
receiver.go
··· 20 20 } 21 21 22 22 if message.Event != EventShowScheduledJobs { 23 - ll.Log("Received", "cyan", "%-10s | %-10s on %s", message.Id, message.Event, message.ChurrosObjectId) 23 + ll.Log("Received", "cyan", message.String()) 24 24 } 25 25 26 26 if message.ClearSchedule {