(line string)
| 167 | } |
| 168 | |
| 169 | func (c *Core) RecordRuntimeLog(line string) { |
| 170 | c.runtimeMu.Lock() |
| 171 | defer c.runtimeMu.Unlock() |
| 172 | c.runtimeLogs.add(line) |
| 173 | } |
| 174 | |
| 175 | func (c *Core) RuntimeLogTail(n int) []string { |
| 176 | c.runtimeMu.RLock() |
no test coverage detected