learning_go/pkg/mod/github.com/ceph/go-ceph@v0.35.0/common/log/log.go
a.pivkin c5bc4da2c3 sdf
2025-09-08 07:26:27 +03:00

18 lines
484 B
Go

// Package log allows to enable go-ceph logging and integrate it with the
// logging of the go-ceph consuming code.
package log
import (
intLog "github.com/ceph/go-ceph/internal/log"
)
// SetWarnf sets the log.Printf compatible receiver for warning logs.
func SetWarnf(f func(format string, v ...interface{})) {
intLog.Warnf = f
}
// SetDebugf sets the log.Printf compatible receiver for debug logs.
func SetDebugf(f func(format string, v ...interface{})) {
intLog.Debugf = f
}