1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-12 02:28:07 +02:00
opentelemetry-go/internal/global/internal_logging.go

64 lines
2.2 KiB
Go
Raw Normal View History

// Copyright The OpenTelemetry 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.
2021-11-24 22:06:39 +02:00
package global // import "go.opentelemetry.io/otel/internal/global"
import (
"log"
"os"
2021-11-24 22:06:39 +02:00
"sync"
"github.com/go-logr/logr"
"github.com/go-logr/stdr"
)
2021-11-18 16:51:49 +02:00
// globalLogger is the logging interface used within the otel api and sdk provide deatails of the internals.
//
// The default logger uses stdr which is backed by the standard `log.Logger`
// interface. This logger will only show messages at the Error Level.
2021-11-24 22:06:39 +02:00
var globalLogger logr.Logger = stdr.New(log.New(os.Stderr, "", log.LstdFlags|log.Lshortfile))
2021-12-01 18:47:46 +02:00
var globalLoggerLock = &sync.RWMutex{}
2021-11-18 16:51:49 +02:00
// SetLogger overrides the globalLogger with l.
//
// To see Info messages use a logger with `l.V(1).Enabled() == true`
// To see Debug messages use a logger with `l.V(5).Enabled() == true`
func SetLogger(l logr.Logger) {
2021-11-24 22:06:39 +02:00
globalLoggerLock.Lock()
defer globalLoggerLock.Unlock()
globalLogger = l
}
2021-11-18 16:51:49 +02:00
// Info prints messages about the general state of the API or SDK.
// This should usually be less then 5 messages a minute
func Info(msg string, keysAndValues ...interface{}) {
2021-11-24 22:06:39 +02:00
globalLoggerLock.RLock()
defer globalLoggerLock.RUnlock()
globalLogger.V(1).Info(msg, keysAndValues...)
}
2021-11-18 16:51:49 +02:00
// Error prints messages about exceptional states of the API or SDK.
func Error(err error, msg string, keysAndValues ...interface{}) {
2021-11-24 22:06:39 +02:00
globalLoggerLock.RLock()
defer globalLoggerLock.RUnlock()
globalLogger.Error(err, msg, keysAndValues...)
}
2021-11-18 16:51:49 +02:00
// Debug prints messages about all internal changes in the API or SDK.
func Debug(msg string, keysAndValues ...interface{}) {
2021-11-24 22:06:39 +02:00
globalLoggerLock.RLock()
defer globalLoggerLock.RUnlock()
globalLogger.V(5).Info(msg, keysAndValues...)
}