func NewEventlogBackend()

in galog_eventlog_linux.go [20:27]


func NewEventlogBackend(eventID uint32, ident string) (*EventlogBackend, error) {
	return &EventlogBackend{
		backendID: eventlogBackendID,
		eventID:   eventID,
		ident:     ident,
		config:    newBackendConfig(defaultEventlogQueueSize),
	}, nil
}