47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
// Copyright (c) 2017 Uber Technologies, Inc.
|
|
//
|
|
// 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 zap
|
|
|
|
import (
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Logger is an adapter from zap Logger to jaeger-lib Logger.
|
|
type Logger struct {
|
|
logger *zap.SugaredLogger
|
|
}
|
|
|
|
// NewLogger creates a new Logger.
|
|
func NewLogger(logger *zap.Logger) *Logger {
|
|
return &Logger{logger: logger.Sugar()}
|
|
}
|
|
|
|
// Error logs a message at error priority
|
|
func (l *Logger) Error(msg string) {
|
|
l.logger.Error(msg)
|
|
}
|
|
|
|
// Infof logs a message at info priority
|
|
func (l *Logger) Infof(msg string, args ...interface{}) {
|
|
l.logger.Infof(msg, args...)
|
|
}
|
|
|
|
// Debugf logs a message at debug priority.
|
|
// TODO: treat the last arg specially similar to Slf4J
|
|
// - cast to zap.Span/etc if type assertion succeeds
|
|
func (l *Logger) Debugf(msg string, args ...interface{}) {
|
|
l.logger.Debugf(msg, args...)
|
|
}
|