Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Connection ¶
type Connection struct {
// contains filtered or unexported fields
}
Connection exposes the LogReader channel which send the LogMessages as strings.
func New ¶
func New(device ios.DeviceEntry) (*Connection, error)
New returns a new SysLog Connection for the given DeviceID and Udid It will create LogReader as a buffered Channel because Syslog is very verbose.
func NewWithShimConnection ¶ added in v1.0.122
func NewWithShimConnection(device ios.DeviceEntry) (*Connection, error)
NewWithShimConnection connects to the syslog_relay service over a tunnel interface and the service port is obtained from remote service discovery
func NewWithUsbmuxdConnection ¶ added in v1.0.122
func NewWithUsbmuxdConnection(device ios.DeviceEntry) (*Connection, error)
NewWithUsbmuxdConnection connects to the syslog_relay service on the device over the usbmuxd socket
func (*Connection) Close ¶
func (sysLogConn *Connection) Close() error
Close closes the underlying UsbMuxConnection
func (*Connection) ReadLogMessage ¶
func (sysLogConn *Connection) ReadLogMessage() (string, error)
ReadLogMessage this is a blocking function that will return individual log messages received from syslog. Call it in an endless for loop in a separate go routine.