NewJournalDWriter returns a zerolog log destination to be used as parameter to New() calls. Writing logs to this writer will send the log messages to journalD running in this system.
()
| 43 | // to this writer will send the log messages to journalD |
| 44 | // running in this system. |
| 45 | func NewJournalDWriter() io.Writer { |
| 46 | return journalWriter{} |
| 47 | } |
| 48 | |
| 49 | type journalWriter struct { |
| 50 | } |
no outgoing calls