mirror of https://github.com/knative/pkg.git
				
				
				
			
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
| Copyright 2018 The Knative 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 logging
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"go.uber.org/zap"
 | |
| )
 | |
| 
 | |
| type loggerKey struct{}
 | |
| 
 | |
| // This logger is used when there is no logger attached to the context.
 | |
| // Rather than returning nil and causing a panic, we will use the fallback
 | |
| // logger. Fallback logger is tagged with logger=fallback to make sure
 | |
| // that code that doesn't set the logger correctly can be caught at runtime.
 | |
| var fallbackLogger *zap.SugaredLogger
 | |
| 
 | |
| func init() {
 | |
| 	if logger, err := zap.NewProduction(); err != nil {
 | |
| 		// We failed to create a fallback logger. Our fallback
 | |
| 		// unfortunately falls back to noop.
 | |
| 		fallbackLogger = zap.NewNop().Sugar()
 | |
| 	} else {
 | |
| 		fallbackLogger = logger.Named("fallback").Sugar()
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // WithLogger returns a copy of parent context in which the
 | |
| // value associated with logger key is the supplied logger.
 | |
| func WithLogger(ctx context.Context, logger *zap.SugaredLogger) context.Context {
 | |
| 	return context.WithValue(ctx, loggerKey{}, logger)
 | |
| }
 | |
| 
 | |
| // FromContext returns the logger stored in context.
 | |
| // Returns nil if no logger is set in context, or if the stored value is
 | |
| // not of correct type.
 | |
| func FromContext(ctx context.Context) *zap.SugaredLogger {
 | |
| 	if logger, ok := ctx.Value(loggerKey{}).(*zap.SugaredLogger); ok {
 | |
| 		return logger
 | |
| 	}
 | |
| 	return fallbackLogger
 | |
| }
 |