mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
23 lines
487 B
Go
23 lines
487 B
Go
package client
|
|
|
|
import (
|
|
"github.com/canonical/go-dqlite/internal/logging"
|
|
)
|
|
|
|
// LogFunc is a function that can be used for logging.
|
|
type LogFunc = logging.Func
|
|
|
|
// LogLevel defines the logging level.
|
|
type LogLevel = logging.Level
|
|
|
|
// Available logging levels.
|
|
const (
|
|
LogDebug = logging.Debug
|
|
LogInfo = logging.Info
|
|
LogWarn = logging.Warn
|
|
LogError = logging.Error
|
|
)
|
|
|
|
// DefaultLogFunc doesn't emit any message.
|
|
func DefaultLogFunc(l LogLevel, format string, a ...interface{}) {}
|