123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- // Copyright 2019 The etcd 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.
- package rafttest
- import (
- "fmt"
- "strings"
- "go.etcd.io/etcd/raft"
- )
- type logLevels [6]string
- func (l logLevels) strToLev(s string) int {
- for i, lvl := range l {
- if strings.ToUpper(s) == lvl {
- return i
- }
- }
- panic(fmt.Sprintf("unknown level %q", s))
- }
- var lvlNames logLevels = [...]string{"DEBUG", "INFO", "WARN", "ERROR", "FATAL", "NONE"}
- type RedirectLogger struct {
- *strings.Builder
- Lvl int // 0 = DEBUG, 1 = INFO, 2 = WARNING, 3 = ERROR, 4 = FATAL, 5 = NONE
- }
- var _ raft.Logger = (*RedirectLogger)(nil)
- func (l *RedirectLogger) printf(lvl int, format string, args ...interface{}) {
- if l.Lvl <= lvl {
- fmt.Fprint(l, lvlNames[lvl], " ")
- fmt.Fprintf(l, format, args...)
- if n := len(format); n > 0 && format[n-1] != '\n' {
- l.WriteByte('\n')
- }
- }
- }
- func (l *RedirectLogger) print(lvl int, args ...interface{}) {
- if l.Lvl <= lvl {
- fmt.Fprint(l, lvlNames[lvl], " ")
- fmt.Fprintln(l, args...)
- }
- }
- func (l *RedirectLogger) Debug(v ...interface{}) {
- l.print(0, v...)
- }
- func (l *RedirectLogger) Debugf(format string, v ...interface{}) {
- l.printf(0, format, v...)
- }
- func (l *RedirectLogger) Info(v ...interface{}) {
- l.print(1, v...)
- }
- func (l *RedirectLogger) Infof(format string, v ...interface{}) {
- l.printf(1, format, v...)
- }
- func (l *RedirectLogger) Warning(v ...interface{}) {
- l.print(2, v...)
- }
- func (l *RedirectLogger) Warningf(format string, v ...interface{}) {
- l.printf(2, format, v...)
- }
- func (l *RedirectLogger) Error(v ...interface{}) {
- l.print(3, v...)
- }
- func (l *RedirectLogger) Errorf(format string, v ...interface{}) {
- l.printf(3, format, v...)
- }
- func (l *RedirectLogger) Fatal(v ...interface{}) {
- l.print(4, v...)
- }
- func (l *RedirectLogger) Fatalf(format string, v ...interface{}) {
- l.printf(4, format, v...)
- }
- func (l *RedirectLogger) Panic(v ...interface{}) {
- l.print(4, v...)
- }
- func (l *RedirectLogger) Panicf(format string, v ...interface{}) {
- l.printf(4, format, v...)
- }
|