Skip to content

Instantly share code, notes, and snippets.

@n5i
Created February 24, 2014 09:17
Show Gist options
  • Save n5i/9184360 to your computer and use it in GitHub Desktop.
Save n5i/9184360 to your computer and use it in GitHub Desktop.
GO: write log
// Write to log
logf, er := os.OpenFile("/home/go/src/app/event.log", os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0640)
if er != nil {
log.Fatalln(er)
}
log.SetOutput(logf)
log.Println("START")
log.SetFlags(log.Ldate | log.Ltime | log.Lmicroseconds | log.Lshortfile)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment