mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 01:42:25 -05:00 
			
		
		
		
	[chore]: Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.17.0 to 1.18.0 (#2207)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
		
					parent
					
						
							
								f302ebb8e5
							
						
					
				
			
			
				commit
				
					
						c6fdcd52fa
					
				
			
		
					 72 changed files with 1040 additions and 864 deletions
				
			
		
							
								
								
									
										30
									
								
								vendor/google.golang.org/grpc/grpclog/grpclog.go
									
										
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										30
									
								
								vendor/google.golang.org/grpc/grpclog/grpclog.go
									
										
									
										generated
									
									
										vendored
									
									
								
							|  | @ -42,53 +42,53 @@ func V(l int) bool { | |||
| } | ||||
| 
 | ||||
| // Info logs to the INFO log. | ||||
| func Info(args ...interface{}) { | ||||
| func Info(args ...any) { | ||||
| 	grpclog.Logger.Info(args...) | ||||
| } | ||||
| 
 | ||||
| // Infof logs to the INFO log. Arguments are handled in the manner of fmt.Printf. | ||||
| func Infof(format string, args ...interface{}) { | ||||
| func Infof(format string, args ...any) { | ||||
| 	grpclog.Logger.Infof(format, args...) | ||||
| } | ||||
| 
 | ||||
| // Infoln logs to the INFO log. Arguments are handled in the manner of fmt.Println. | ||||
| func Infoln(args ...interface{}) { | ||||
| func Infoln(args ...any) { | ||||
| 	grpclog.Logger.Infoln(args...) | ||||
| } | ||||
| 
 | ||||
| // Warning logs to the WARNING log. | ||||
| func Warning(args ...interface{}) { | ||||
| func Warning(args ...any) { | ||||
| 	grpclog.Logger.Warning(args...) | ||||
| } | ||||
| 
 | ||||
| // Warningf logs to the WARNING log. Arguments are handled in the manner of fmt.Printf. | ||||
| func Warningf(format string, args ...interface{}) { | ||||
| func Warningf(format string, args ...any) { | ||||
| 	grpclog.Logger.Warningf(format, args...) | ||||
| } | ||||
| 
 | ||||
| // Warningln logs to the WARNING log. Arguments are handled in the manner of fmt.Println. | ||||
| func Warningln(args ...interface{}) { | ||||
| func Warningln(args ...any) { | ||||
| 	grpclog.Logger.Warningln(args...) | ||||
| } | ||||
| 
 | ||||
| // Error logs to the ERROR log. | ||||
| func Error(args ...interface{}) { | ||||
| func Error(args ...any) { | ||||
| 	grpclog.Logger.Error(args...) | ||||
| } | ||||
| 
 | ||||
| // Errorf logs to the ERROR log. Arguments are handled in the manner of fmt.Printf. | ||||
| func Errorf(format string, args ...interface{}) { | ||||
| func Errorf(format string, args ...any) { | ||||
| 	grpclog.Logger.Errorf(format, args...) | ||||
| } | ||||
| 
 | ||||
| // Errorln logs to the ERROR log. Arguments are handled in the manner of fmt.Println. | ||||
| func Errorln(args ...interface{}) { | ||||
| func Errorln(args ...any) { | ||||
| 	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. | ||||
| func Fatal(args ...interface{}) { | ||||
| func Fatal(args ...any) { | ||||
| 	grpclog.Logger.Fatal(args...) | ||||
| 	// Make sure fatal logs will exit. | ||||
| 	os.Exit(1) | ||||
|  | @ -96,7 +96,7 @@ func Fatal(args ...interface{}) { | |||
| 
 | ||||
| // Fatalf logs to the FATAL log. Arguments are handled in the manner of fmt.Printf. | ||||
| // It calls os.Exit() with exit code 1. | ||||
| func Fatalf(format string, args ...interface{}) { | ||||
| func Fatalf(format string, args ...any) { | ||||
| 	grpclog.Logger.Fatalf(format, args...) | ||||
| 	// Make sure fatal logs will exit. | ||||
| 	os.Exit(1) | ||||
|  | @ -104,7 +104,7 @@ func Fatalf(format string, args ...interface{}) { | |||
| 
 | ||||
| // Fatalln logs to the FATAL log. Arguments are handled in the manner of fmt.Println. | ||||
| // It calle os.Exit()) with exit code 1. | ||||
| func Fatalln(args ...interface{}) { | ||||
| func Fatalln(args ...any) { | ||||
| 	grpclog.Logger.Fatalln(args...) | ||||
| 	// Make sure fatal logs will exit. | ||||
| 	os.Exit(1) | ||||
|  | @ -113,20 +113,20 @@ func Fatalln(args ...interface{}) { | |||
| // Print prints to the logger. Arguments are handled in the manner of fmt.Print. | ||||
| // | ||||
| // Deprecated: use Info. | ||||
| func Print(args ...interface{}) { | ||||
| func Print(args ...any) { | ||||
| 	grpclog.Logger.Info(args...) | ||||
| } | ||||
| 
 | ||||
| // Printf prints to the logger. Arguments are handled in the manner of fmt.Printf. | ||||
| // | ||||
| // Deprecated: use Infof. | ||||
| func Printf(format string, args ...interface{}) { | ||||
| func Printf(format string, args ...any) { | ||||
| 	grpclog.Logger.Infof(format, args...) | ||||
| } | ||||
| 
 | ||||
| // Println prints to the logger. Arguments are handled in the manner of fmt.Println. | ||||
| // | ||||
| // Deprecated: use Infoln. | ||||
| func Println(args ...interface{}) { | ||||
| func Println(args ...any) { | ||||
| 	grpclog.Logger.Infoln(args...) | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue