February 2018
Intermediate to advanced
246 pages
6h 3m
English
The source file consists of code that is speacialized to one handler.
package common
import (
"fmt"
"log"
)
func Log(msg string) {
log.Println("INFO - ", msg)
}
func Warn(msg string) {
log.Println("---------------------------")
log.Println(fmt.Sprintf("WARN: %s", msg))
log.Println("---------------------------")
}
Read now
Unlock full access