February 2018
Intermediate to advanced
340 pages
9h 43m
English
package main import ( "log" "os" ) func main() { custLogger := log.New(os.Stdout, "custom1: ", log.Ldate|log.Ltime) custLogger.Println("Hello I'm customized") custLoggerEnh := log.New(os.Stdout, "custom2: ", log.Ldate|log.Lshortfile) custLoggerEnh.Println("Hello I'm customized logger 2") }

Read now
Unlock full access