func()

in fc/function.go [222:233]


func (fn *Function) printStartLog(funcType functionType, requestId string) {
	switch funcType {
	case initializerFunction:
		fmt.Printf("FC Initialize Start RequestId: %s\n", requestId)
	case preStopFunction:
		fmt.Printf("FC PreStop Start RequestId: %s\n", requestId)
	case preFreezeFunction:
		fmt.Printf("FC PreFreeze Start RequestId: %s\n", requestId)
	default:
		fmt.Printf("FC Invoke Start RequestId: %s\n", requestId)
	}
}