Add a Makefile to show development commands
Signed-off-by: Peter Edge <peter.edge@gmail.com>
This commit is contained in:
@ -32,7 +32,7 @@
|
||||
*/
|
||||
|
||||
/*
|
||||
Package log defines logging for grpc.
|
||||
Package grpclog defines logging for grpc.
|
||||
*/
|
||||
package grpclog // import "google.golang.org/grpc/grpclog"
|
||||
|
||||
@ -73,12 +73,12 @@ func Fatal(args ...interface{}) {
|
||||
logger.Fatal(args...)
|
||||
}
|
||||
|
||||
// Fatal is equivalent to Printf() followed by a call to os.Exit() with a non-zero exit code.
|
||||
// Fatalf is equivalent to Printf() followed by a call to os.Exit() with a non-zero exit code.
|
||||
func Fatalf(format string, args ...interface{}) {
|
||||
logger.Fatalf(format, args...)
|
||||
}
|
||||
|
||||
// Fatal is equivalent to Println() followed by a call to os.Exit()) with a non-zero exit code.
|
||||
// Fatalln is equivalent to Println() followed by a call to os.Exit()) with a non-zero exit code.
|
||||
func Fatalln(args ...interface{}) {
|
||||
logger.Fatalln(args...)
|
||||
}
|
||||
|
Reference in New Issue
Block a user