| 23 | ) |
| 24 | |
| 25 | type LogMessage struct { |
| 26 | message string |
| 27 | messageType string |
| 28 | timestamp time.Time |
| 29 | sourceType string |
| 30 | sourceInstance string |
| 31 | } |
| 32 | |
| 33 | func (log LogMessage) Message() string { |
| 34 | return log.message |
nothing calls this directly
no outgoing calls
no test coverage detected