github.com/divyam234/rclone@v1.64.1/fs/log/systemd.go (about)

     1  // Systemd interface for non-Unix variants only
     2  
     3  //go:build windows || nacl || plan9
     4  // +build windows nacl plan9
     5  
     6  package log
     7  
     8  import (
     9  	"log"
    10  	"runtime"
    11  )
    12  
    13  // Enables systemd logs if configured or if auto detected
    14  func startSystemdLog() bool {
    15  	log.Fatalf("--log-systemd not supported on %s platform", runtime.GOOS)
    16  	return false
    17  }