aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/google.golang.org/grpc/grpclog/grpclog.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/google.golang.org/grpc/grpclog/grpclog.go')
-rw-r--r--vendor/google.golang.org/grpc/grpclog/grpclog.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/vendor/google.golang.org/grpc/grpclog/grpclog.go b/vendor/google.golang.org/grpc/grpclog/grpclog.go
index 16a7d88..1fabb11 100644
--- a/vendor/google.golang.org/grpc/grpclog/grpclog.go
+++ b/vendor/google.golang.org/grpc/grpclog/grpclog.go
@@ -105,18 +105,21 @@ func Fatalln(args ...interface{}) {
105} 105}
106 106
107// Print prints to the logger. Arguments are handled in the manner of fmt.Print. 107// Print prints to the logger. Arguments are handled in the manner of fmt.Print.
108//
108// Deprecated: use Info. 109// Deprecated: use Info.
109func Print(args ...interface{}) { 110func Print(args ...interface{}) {
110 logger.Info(args...) 111 logger.Info(args...)
111} 112}
112 113
113// Printf prints to the logger. Arguments are handled in the manner of fmt.Printf. 114// Printf prints to the logger. Arguments are handled in the manner of fmt.Printf.
115//
114// Deprecated: use Infof. 116// Deprecated: use Infof.
115func Printf(format string, args ...interface{}) { 117func Printf(format string, args ...interface{}) {
116 logger.Infof(format, args...) 118 logger.Infof(format, args...)
117} 119}
118 120
119// Println prints to the logger. Arguments are handled in the manner of fmt.Println. 121// Println prints to the logger. Arguments are handled in the manner of fmt.Println.
122//
120// Deprecated: use Infoln. 123// Deprecated: use Infoln.
121func Println(args ...interface{}) { 124func Println(args ...interface{}) {
122 logger.Infoln(args...) 125 logger.Infoln(args...)