| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright 2017 gRPC authors. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Package grpclog defines logging for grpc. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // All logs in transport and grpclb packages only go to verbose level 2. | 
					
						
							|  |  |  | // All logs in other packages in grpc are logged in spite of the verbosity level. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // In the default logger, | 
					
						
							|  |  |  | // severity level can be set by environment variable GRPC_GO_LOG_SEVERITY_LEVEL, | 
					
						
							|  |  |  | // verbosity level can be set by GRPC_GO_LOG_VERBOSITY_LEVEL. | 
					
						
							|  |  |  | package grpclog // import "google.golang.org/grpc/grpclog" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"google.golang.org/grpc/internal/grpclog" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							|  |  |  | 	SetLoggerV2(newLoggerV2()) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // V reports whether verbosity level l is at least the requested verbose level. | 
					
						
							|  |  |  | func V(l int) bool { | 
					
						
							|  |  |  | 	return grpclog.Logger.V(l) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Info logs to the INFO log. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Info(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Info(args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Infof logs to the INFO log. Arguments are handled in the manner of fmt.Printf. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Infof(format string, args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Infof(format, args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Infoln logs to the INFO log. Arguments are handled in the manner of fmt.Println. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Infoln(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Infoln(args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Warning logs to the WARNING log. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Warning(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Warning(args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Warningf logs to the WARNING log. Arguments are handled in the manner of fmt.Printf. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Warningf(format string, args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Warningf(format, args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Warningln logs to the WARNING log. Arguments are handled in the manner of fmt.Println. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Warningln(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Warningln(args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Error logs to the ERROR log. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Error(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Error(args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Errorf logs to the ERROR log. Arguments are handled in the manner of fmt.Printf. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Errorf(format string, args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Errorf(format, args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Errorln logs to the ERROR log. Arguments are handled in the manner of fmt.Println. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Errorln(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Errorln(args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Fatal logs to the FATAL log. Arguments are handled in the manner of fmt.Print. | 
					
						
							|  |  |  | // It calls os.Exit() with exit code 1. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Fatal(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Fatal(args...) | 
					
						
							|  |  |  | 	// Make sure fatal logs will exit. | 
					
						
							|  |  |  | 	os.Exit(1) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Fatalf logs to the FATAL log. Arguments are handled in the manner of fmt.Printf. | 
					
						
							|  |  |  | // It calls os.Exit() with exit code 1. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Fatalf(format string, args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Fatalf(format, args...) | 
					
						
							|  |  |  | 	// Make sure fatal logs will exit. | 
					
						
							|  |  |  | 	os.Exit(1) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Fatalln logs to the FATAL log. Arguments are handled in the manner of fmt.Println. | 
					
						
							|  |  |  | // It calle os.Exit()) with exit code 1. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Fatalln(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Fatalln(args...) | 
					
						
							|  |  |  | 	// Make sure fatal logs will exit. | 
					
						
							|  |  |  | 	os.Exit(1) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Print prints to the logger. Arguments are handled in the manner of fmt.Print. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Deprecated: use Info. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Print(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Info(args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Printf prints to the logger. Arguments are handled in the manner of fmt.Printf. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Deprecated: use Infof. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Printf(format string, args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Infof(format, args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Println prints to the logger. Arguments are handled in the manner of fmt.Println. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Deprecated: use Infoln. | 
					
						
							| 
									
										
										
										
											2023-09-18 13:47:28 +01:00
										 |  |  | func Println(args ...any) { | 
					
						
							| 
									
										
										
										
											2023-05-09 19:19:48 +02:00
										 |  |  | 	grpclog.Logger.Infoln(args...) | 
					
						
							|  |  |  | } |