| 66 | ) |
| 67 | |
| 68 | type machineEvent struct { |
| 69 | Timestamp time.Time |
| 70 | State machineState |
| 71 | Message string |
| 72 | } |
| 73 | |
| 74 | func (s *Server) machineEvent(mac net.HardwareAddr, state machineState, format string, args ...interface{}) { |
| 75 | evt := machineEvent{ |
nothing calls this directly
no outgoing calls
no test coverage detected