github.com/prysmaticlabs/prysm@v1.4.4/shared/journald/journald.go (about)

     1  // +build !linux
     2  
     3  package journald
     4  
     5  import (
     6  	"fmt"
     7  )
     8  
     9  // Enable returns an error on non-Linux systems
    10  func Enable() error {
    11  	return fmt.Errorf("journald is not supported in this platform")
    12  }