Skip to content

Instantly share code, notes, and snippets.

@n5i
Created July 30, 2015 08:19
Show Gist options
  • Save n5i/1f2b1d1575eee992cf7d to your computer and use it in GitHub Desktop.
Save n5i/1f2b1d1575eee992cf7d to your computer and use it in GitHub Desktop.
Golang syslog
package main
import (
"log/syslog"
"log"
)
func main() {
// Initialize syslog
sysLog, err := syslog.New(syslog.LOG_INFO, "xxxApp")
if err != nil {
log.Fatal(err)
}
sysLog.Info("Hi")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment