* Add an entry in the log. * * @param content Content of the entry.
(content: string)
| 216 | * @param content Content of the entry. |
| 217 | */ |
| 218 | private logContent(content: string): void { |
| 219 | this.emit('output', { |
| 220 | source: this.name, |
| 221 | content: removeTrailingNewlines(content), |
| 222 | }); |
| 223 | } |
| 224 | |
| 225 | private logContentAny = (content: Buffer | any): void => { |
| 226 | try { |
no test coverage detected