RemoteTimeWriter writer for writing remote log.
| 8 | |
| 9 | // RemoteTimeWriter writer for writing remote log. |
| 10 | type RemoteTimeWriter struct { |
| 11 | logInfo *logf.LogInfo |
| 12 | logs chan string |
| 13 | logPtr *logf.Log |
| 14 | reportSuccessPtr *PropertyReport |
| 15 | reportFailPtr *PropertyReport |
| 16 | hasPrefix bool |
| 17 | comm *Communicator |
| 18 | } |
| 19 | |
| 20 | // NewRemoteTimeWriter new and init RemoteTimeWriter |
| 21 | func NewRemoteTimeWriter() *RemoteTimeWriter { |
nothing calls this directly
no outgoing calls
no test coverage detected