mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Restore pretty formatted config options in debug level
This commit is contained in:
parent
751e2d6147
commit
39d68e8287
5 changed files with 61 additions and 23 deletions
|
@ -50,6 +50,17 @@ type levelThresholdTest struct {
|
|||
description string
|
||||
}
|
||||
|
||||
// levelThreshold returns a []logrus.Level including all levels
|
||||
// above and including the level given. If the provided level does not exit,
|
||||
// an empty slice is returned.
|
||||
func levelThreshold(l logrus.Level) []logrus.Level {
|
||||
//nolint
|
||||
if l < 0 || int(l) > len(logrus.AllLevels) {
|
||||
return []logrus.Level{}
|
||||
}
|
||||
return logrus.AllLevels[:l+1]
|
||||
}
|
||||
|
||||
func TestLevelThreshold(t *testing.T) {
|
||||
tests := []levelThresholdTest{
|
||||
{
|
||||
|
@ -68,7 +79,7 @@ func TestLevelThreshold(t *testing.T) {
|
|||
|
||||
for _, test := range tests {
|
||||
fn := func(t *testing.T) {
|
||||
levels := LevelThreshold(test.level)
|
||||
levels := levelThreshold(test.level)
|
||||
assert.Equal(t, test.expected, levels, test.description)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue