Push pushes log into the log buffer.
(*types.Log)
| 27 | type LogBuffer interface { |
| 28 | // Push pushes log into the log buffer. |
| 29 | Push(*types.Log) |
| 30 | // Match with regular expression in the log buffer. |
| 31 | Match(string) []*types.Log |
| 32 | // String returns a concatenated string of the buffered logs. |