-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: davinlu <davinlu@tencent.com>
- Loading branch information
davinlu
committed
Sep 1, 2021
1 parent
d57c8b1
commit 6329577
Showing
8 changed files
with
218 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
// Copyright 2021 The Prometheus 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 level | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/go-kit/log" | ||
"github.com/go-kit/log/level" | ||
) | ||
|
||
var logLevel = LevelInfo | ||
|
||
// A Level is a logging priority. Higher levels are more important. | ||
type Level int | ||
|
||
const ( | ||
// LevelDebug logs are typically voluminous, and are usually disabled in | ||
// production. | ||
LevelDebug Level = iota | ||
// LevelInfo is the default logging priority. | ||
LevelInfo | ||
// LevelWarn logs are more important than Info, but don't need individual | ||
// human review. | ||
LevelWarn | ||
// LevelError logs are high-priority. If an application is running smoothly, | ||
// it shouldn't generate any error-level logs. | ||
LevelError | ||
) | ||
|
||
var emptyLogger = &EmptyLogger{} | ||
|
||
type EmptyLogger struct{} | ||
|
||
func (l *EmptyLogger) Log(keyvals ...interface{}) error { | ||
return nil | ||
} | ||
|
||
// SetLogLevel sets the log level. | ||
func SetLogLevel(level string) error { | ||
switch level { | ||
case "debug": | ||
logLevel = LevelDebug | ||
case "info": | ||
logLevel = LevelInfo | ||
case "warn": | ||
logLevel = LevelWarn | ||
case "error": | ||
logLevel = LevelError | ||
default: | ||
return fmt.Errorf("unrecognized log level %s", level) | ||
} | ||
return nil | ||
} | ||
|
||
// Error returns a logger that includes a Key/ErrorValue pair. | ||
func Error(logger log.Logger) log.Logger { | ||
if logLevel <= LevelError { | ||
return level.Error(logger) | ||
} | ||
return emptyLogger | ||
} | ||
|
||
// Warn returns a logger that includes a Key/WarnValue pair. | ||
func Warn(logger log.Logger) log.Logger { | ||
if logLevel <= LevelWarn { | ||
return level.Warn(logger) | ||
} | ||
return emptyLogger | ||
} | ||
|
||
// Info returns a logger that includes a Key/InfoValue pair. | ||
func Info(logger log.Logger) log.Logger { | ||
if logLevel <= LevelInfo { | ||
return level.Info(logger) | ||
} | ||
return emptyLogger | ||
} | ||
|
||
// Debug returns a logger that includes a Key/DebugValue pair. | ||
func Debug(logger log.Logger) log.Logger { | ||
if logLevel <= LevelDebug { | ||
return level.Debug(logger) | ||
} | ||
return emptyLogger | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
// Copyright 2021 The Prometheus 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 level | ||
|
||
import ( | ||
"bytes" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/go-kit/log" | ||
) | ||
|
||
func TestSetLogLevel(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
level string | ||
logLevel Level | ||
wantErr bool | ||
}{ | ||
{"wrong level", "foo", LevelInfo, true}, | ||
{"level debug", "debug", LevelDebug, false}, | ||
{"level info", "info", LevelInfo, false}, | ||
{"level warn", "warn", LevelWarn, false}, | ||
{"level error", "error", LevelError, false}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
if err := SetLogLevel(tt.level); (err != nil) != tt.wantErr { | ||
t.Fatalf("Expected log level to be set successfully, but got %v", err) | ||
} | ||
if tt.logLevel != logLevel { | ||
t.Fatalf("Expected log level %v, but got %v", tt.logLevel, logLevel) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func TestVariousLevels(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
level string | ||
want string | ||
}{ | ||
{ | ||
"level debug", | ||
"debug", | ||
strings.Join([]string{ | ||
"level=debug log=debug", | ||
"level=info log=info", | ||
"level=warn log=warn", | ||
"level=error log=error", | ||
}, "\n"), | ||
}, | ||
{ | ||
"level info", | ||
"info", | ||
strings.Join([]string{ | ||
"level=info log=info", | ||
"level=warn log=warn", | ||
"level=error log=error", | ||
}, "\n"), | ||
}, | ||
{ | ||
"level warn", | ||
"warn", | ||
strings.Join([]string{ | ||
"level=warn log=warn", | ||
"level=error log=error", | ||
}, "\n"), | ||
}, | ||
{ | ||
"level error", | ||
"error", | ||
strings.Join([]string{ | ||
"level=error log=error", | ||
}, "\n"), | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
var buf bytes.Buffer | ||
logger := log.NewLogfmtLogger(&buf) | ||
|
||
if err := SetLogLevel(tt.level); err != nil { | ||
t.Fatalf("Expected log level to be set successfully, but got %v", err) | ||
} | ||
|
||
Debug(logger).Log("log", "debug") | ||
Info(logger).Log("log", "info") | ||
Warn(logger).Log("log", "warn") | ||
Error(logger).Log("log", "error") | ||
|
||
got := strings.TrimSpace(buf.String()) | ||
if tt.want != got { | ||
t.Fatalf("Expected log output %v, but got %v", tt.want, got) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters