Skip to content

Instantly share code, notes, and snippets.

@lll-phill-lll
Last active February 23, 2019 13:41
Show Gist options
  • Save lll-phill-lll/359866750263a5b27bee86813d4c061d to your computer and use it in GitHub Desktop.
Save lll-phill-lll/359866750263a5b27bee86813d4c061d to your computer and use it in GitHub Desktop.
package main
import (
"log"
"os"
)
func main() {
loggerInfo := log.New(os.Stdout, "INFO: ",
log.Ldate|log.Lmicroseconds|log.Lshortfile)
loggerInfo.Println("Something happened!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment