mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-12-18 11:00:25 +00:00
cleanup: move log functions to util/log.go
There is a util/log.go file, so the log functions in util/util.go can be moved there. Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
parent
b86d329d1e
commit
44863a9d29
@ -16,6 +16,17 @@ package util
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
klog "k8s.io/klog/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
// enum defining logging levels.
|
||||||
|
const (
|
||||||
|
Default klog.Level = iota + 1
|
||||||
|
Useful
|
||||||
|
Extended
|
||||||
|
Debug
|
||||||
|
Trace
|
||||||
)
|
)
|
||||||
|
|
||||||
type contextKey string
|
type contextKey string
|
||||||
@ -40,3 +51,75 @@ func Log(ctx context.Context, format string) string {
|
|||||||
a += fmt.Sprintf("Req-ID: %v ", reqID)
|
a += fmt.Sprintf("Req-ID: %v ", reqID)
|
||||||
return a + format
|
return a + format
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DefaultLog helps in logging with klog.level 1.
|
||||||
|
func DefaultLog(message string, args ...interface{}) {
|
||||||
|
logMessage := fmt.Sprintf(message, args...)
|
||||||
|
// If logging is disabled, don't evaluate the arguments
|
||||||
|
if klog.V(Default).Enabled() {
|
||||||
|
klog.InfoDepth(1, logMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// UsefulLog helps in logging with klog.level 2.
|
||||||
|
func UsefulLog(ctx context.Context, message string, args ...interface{}) {
|
||||||
|
logMessage := fmt.Sprintf(Log(ctx, message), args...)
|
||||||
|
// If logging is disabled, don't evaluate the arguments
|
||||||
|
if klog.V(Useful).Enabled() {
|
||||||
|
klog.InfoDepth(1, logMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ExtendedLogMsg helps in logging a message with klog.level 3.
|
||||||
|
func ExtendedLogMsg(message string, args ...interface{}) {
|
||||||
|
logMessage := fmt.Sprintf(message, args...)
|
||||||
|
// If logging is disabled, don't evaluate the arguments
|
||||||
|
if klog.V(Extended).Enabled() {
|
||||||
|
klog.InfoDepth(1, logMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ExtendedLog helps in logging with klog.level 3.
|
||||||
|
func ExtendedLog(ctx context.Context, message string, args ...interface{}) {
|
||||||
|
logMessage := fmt.Sprintf(Log(ctx, message), args...)
|
||||||
|
// If logging is disabled, don't evaluate the arguments
|
||||||
|
if klog.V(Extended).Enabled() {
|
||||||
|
klog.InfoDepth(1, logMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// DebugLogMsg helps in logging a message with klog.level 4.
|
||||||
|
func DebugLogMsg(message string, args ...interface{}) {
|
||||||
|
logMessage := fmt.Sprintf(message, args...)
|
||||||
|
// If logging is disabled, don't evaluate the arguments
|
||||||
|
if klog.V(Debug).Enabled() {
|
||||||
|
klog.InfoDepth(1, logMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// DebugLog helps in logging with klog.level 4.
|
||||||
|
func DebugLog(ctx context.Context, message string, args ...interface{}) {
|
||||||
|
logMessage := fmt.Sprintf(Log(ctx, message), args...)
|
||||||
|
// If logging is disabled, don't evaluate the arguments
|
||||||
|
if klog.V(Debug).Enabled() {
|
||||||
|
klog.InfoDepth(1, logMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TraceLogMsg helps in logging a message with klog.level 5.
|
||||||
|
func TraceLogMsg(message string, args ...interface{}) {
|
||||||
|
logMessage := fmt.Sprintf(message, args...)
|
||||||
|
// If logging is disabled, don't evaluate the arguments
|
||||||
|
if klog.V(Trace).Enabled() {
|
||||||
|
klog.InfoDepth(1, logMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TraceLog helps in logging with klog.level 5.
|
||||||
|
func TraceLog(ctx context.Context, message string, args ...interface{}) {
|
||||||
|
logMessage := fmt.Sprintf(Log(ctx, message), args...)
|
||||||
|
// If logging is disabled, don't evaluate the arguments
|
||||||
|
if klog.V(Trace).Enabled() {
|
||||||
|
klog.InfoDepth(1, logMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -35,15 +35,6 @@ import (
|
|||||||
"k8s.io/utils/mount"
|
"k8s.io/utils/mount"
|
||||||
)
|
)
|
||||||
|
|
||||||
// enum defining logging levels.
|
|
||||||
const (
|
|
||||||
Default klog.Level = iota + 1
|
|
||||||
Useful
|
|
||||||
Extended
|
|
||||||
Debug
|
|
||||||
Trace
|
|
||||||
)
|
|
||||||
|
|
||||||
// RoundOffVolSize rounds up given quantity upto chunks of MiB/GiB.
|
// RoundOffVolSize rounds up given quantity upto chunks of MiB/GiB.
|
||||||
func RoundOffVolSize(size int64) int64 {
|
func RoundOffVolSize(size int64) int64 {
|
||||||
size = RoundOffBytes(size)
|
size = RoundOffBytes(size)
|
||||||
@ -323,75 +314,3 @@ func contains(s []string, key string) bool {
|
|||||||
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// DefaultLog helps in logging with klog.level 1.
|
|
||||||
func DefaultLog(message string, args ...interface{}) {
|
|
||||||
logMessage := fmt.Sprintf(message, args...)
|
|
||||||
// If logging is disabled, don't evaluate the arguments
|
|
||||||
if klog.V(Default).Enabled() {
|
|
||||||
klog.InfoDepth(1, logMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// UsefulLog helps in logging with klog.level 2.
|
|
||||||
func UsefulLog(ctx context.Context, message string, args ...interface{}) {
|
|
||||||
logMessage := fmt.Sprintf(Log(ctx, message), args...)
|
|
||||||
// If logging is disabled, don't evaluate the arguments
|
|
||||||
if klog.V(Useful).Enabled() {
|
|
||||||
klog.InfoDepth(1, logMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ExtendedLogMsg helps in logging a message with klog.level 3.
|
|
||||||
func ExtendedLogMsg(message string, args ...interface{}) {
|
|
||||||
logMessage := fmt.Sprintf(message, args...)
|
|
||||||
// If logging is disabled, don't evaluate the arguments
|
|
||||||
if klog.V(Extended).Enabled() {
|
|
||||||
klog.InfoDepth(1, logMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ExtendedLog helps in logging with klog.level 3.
|
|
||||||
func ExtendedLog(ctx context.Context, message string, args ...interface{}) {
|
|
||||||
logMessage := fmt.Sprintf(Log(ctx, message), args...)
|
|
||||||
// If logging is disabled, don't evaluate the arguments
|
|
||||||
if klog.V(Extended).Enabled() {
|
|
||||||
klog.InfoDepth(1, logMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// DebugLogMsg helps in logging a message with klog.level 4.
|
|
||||||
func DebugLogMsg(message string, args ...interface{}) {
|
|
||||||
logMessage := fmt.Sprintf(message, args...)
|
|
||||||
// If logging is disabled, don't evaluate the arguments
|
|
||||||
if klog.V(Debug).Enabled() {
|
|
||||||
klog.InfoDepth(1, logMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// DebugLog helps in logging with klog.level 4.
|
|
||||||
func DebugLog(ctx context.Context, message string, args ...interface{}) {
|
|
||||||
logMessage := fmt.Sprintf(Log(ctx, message), args...)
|
|
||||||
// If logging is disabled, don't evaluate the arguments
|
|
||||||
if klog.V(Debug).Enabled() {
|
|
||||||
klog.InfoDepth(1, logMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TraceLogMsg helps in logging a message with klog.level 5.
|
|
||||||
func TraceLogMsg(message string, args ...interface{}) {
|
|
||||||
logMessage := fmt.Sprintf(message, args...)
|
|
||||||
// If logging is disabled, don't evaluate the arguments
|
|
||||||
if klog.V(Trace).Enabled() {
|
|
||||||
klog.InfoDepth(1, logMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TraceLog helps in logging with klog.level 5.
|
|
||||||
func TraceLog(ctx context.Context, message string, args ...interface{}) {
|
|
||||||
logMessage := fmt.Sprintf(Log(ctx, message), args...)
|
|
||||||
// If logging is disabled, don't evaluate the arguments
|
|
||||||
if klog.V(Trace).Enabled() {
|
|
||||||
klog.InfoDepth(1, logMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user