(c ColorLogger, m sharedaction.LogMessage)
| 22 | } |
| 23 | |
| 24 | func NewLogCacheMessage(c ColorLogger, m sharedaction.LogMessage) *LogCacheMessage { |
| 25 | return &LogCacheMessage{ |
| 26 | colorLogger: c, |
| 27 | msg: m, |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | func (m *LogCacheMessage) ToSimpleLog() string { |
| 32 | return m.msg.Message() |
no outgoing calls
no test coverage detected