mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +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
|
@ -115,7 +115,9 @@ func Load() {
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Debug(pretty.Sprintf("Loaded configuration from '%s': %# v\n", Server.ConfigFile, Server))
|
if log.CurrentLevel() >= log.LevelDebug {
|
||||||
|
fmt.Println(log.Redact(pretty.Sprintf("Loaded configuration from '%s': %# v", Server.ConfigFile, Server)))
|
||||||
|
}
|
||||||
|
|
||||||
// Call init hooks
|
// Call init hooks
|
||||||
for _, hook := range hooks {
|
for _, hook := range hooks {
|
||||||
|
|
|
@ -87,6 +87,12 @@ func SetRedacting(enabled bool) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Redact applies redaction to a single string
|
||||||
|
func Redact(msg string) string {
|
||||||
|
r, _ := redacted.redact(msg)
|
||||||
|
return r
|
||||||
|
}
|
||||||
|
|
||||||
func NewContext(ctx context.Context, keyValuePairs ...interface{}) context.Context {
|
func NewContext(ctx context.Context, keyValuePairs ...interface{}) context.Context {
|
||||||
if ctx == nil {
|
if ctx == nil {
|
||||||
ctx = context.Background()
|
ctx = context.Background()
|
||||||
|
|
|
@ -28,7 +28,7 @@ var _ = Describe("Logger", func() {
|
||||||
SetDefaultLogger(l)
|
SetDefaultLogger(l)
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("Logging", func() {
|
Describe("Logging", func() {
|
||||||
It("logs a simple message", func() {
|
It("logs a simple message", func() {
|
||||||
Error("Simple Message")
|
Error("Simple Message")
|
||||||
Expect(hook.LastEntry().Message).To(Equal("Simple Message"))
|
Expect(hook.LastEntry().Message).To(Equal("Simple Message"))
|
||||||
|
@ -96,7 +96,7 @@ var _ = Describe("Logger", func() {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("Levels", func() {
|
Describe("Levels", func() {
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
SetLevel(LevelTrace)
|
SetLevel(LevelTrace)
|
||||||
})
|
})
|
||||||
|
@ -122,7 +122,7 @@ var _ = Describe("Logger", func() {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("extractLogger", func() {
|
Describe("extractLogger", func() {
|
||||||
It("returns an error if the context is nil", func() {
|
It("returns an error if the context is nil", func() {
|
||||||
_, err := extractLogger(nil)
|
_, err := extractLogger(nil)
|
||||||
Expect(err).ToNot(BeNil())
|
Expect(err).ToNot(BeNil())
|
||||||
|
@ -151,7 +151,7 @@ var _ = Describe("Logger", func() {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("SetLevelString", func() {
|
Describe("SetLevelString", func() {
|
||||||
It("converts Critical level", func() {
|
It("converts Critical level", func() {
|
||||||
SetLevelString("Critical")
|
SetLevelString("Critical")
|
||||||
Expect(CurrentLevel()).To(Equal(LevelCritical))
|
Expect(CurrentLevel()).To(Equal(LevelCritical))
|
||||||
|
@ -177,4 +177,11 @@ var _ = Describe("Logger", func() {
|
||||||
Expect(CurrentLevel()).To(Equal(LevelTrace))
|
Expect(CurrentLevel()).To(Equal(LevelTrace))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Describe("Redact", func() {
|
||||||
|
Describe("Subsonic API password", func() {
|
||||||
|
msg := "getLyrics.view?v=1.2.0&c=iSub&u=user_name&p=first%20and%20other%20words&title=Title"
|
||||||
|
Expect(Redact(msg)).To(Equal("getLyrics.view?v=1.2.0&c=iSub&u=user_name&p=[REDACTED]&title=Title"))
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -16,6 +16,7 @@ type Hook struct {
|
||||||
// will not be dispatched. If empty, all messages will be dispatched.
|
// will not be dispatched. If empty, all messages will be dispatched.
|
||||||
AcceptedLevels []logrus.Level
|
AcceptedLevels []logrus.Level
|
||||||
RedactionList []string
|
RedactionList []string
|
||||||
|
redactionKeys []*regexp.Regexp
|
||||||
}
|
}
|
||||||
|
|
||||||
// Levels returns the user defined AcceptedLevels
|
// Levels returns the user defined AcceptedLevels
|
||||||
|
@ -27,26 +28,13 @@ func (h *Hook) Levels() []logrus.Level {
|
||||||
return h.AcceptedLevels
|
return h.AcceptedLevels
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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]
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fire redacts values in an log Entry that match
|
// Fire redacts values in an log Entry that match
|
||||||
// with keys defined in the RedactionList
|
// with keys defined in the RedactionList
|
||||||
func (h *Hook) Fire(e *logrus.Entry) error {
|
func (h *Hook) Fire(e *logrus.Entry) error {
|
||||||
for _, redactionKey := range h.RedactionList {
|
if err := h.initRedaction(); err != nil {
|
||||||
re, err := regexp.Compile(redactionKey)
|
return err
|
||||||
if err != nil {
|
}
|
||||||
return err
|
for _, re := range h.redactionKeys {
|
||||||
}
|
|
||||||
|
|
||||||
// Redact based on key matching in Data fields
|
// Redact based on key matching in Data fields
|
||||||
for k, v := range e.Data {
|
for k, v := range e.Data {
|
||||||
if re.MatchString(k) {
|
if re.MatchString(k) {
|
||||||
|
@ -68,3 +56,27 @@ func (h *Hook) Fire(e *logrus.Entry) error {
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (h *Hook) initRedaction() error {
|
||||||
|
if len(h.redactionKeys) == 0 {
|
||||||
|
for _, redactionKey := range h.RedactionList {
|
||||||
|
re, err := regexp.Compile(redactionKey)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
h.redactionKeys = append(h.redactionKeys, re)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *Hook) redact(msg string) (string, error) {
|
||||||
|
if err := h.initRedaction(); err != nil {
|
||||||
|
return msg, err
|
||||||
|
}
|
||||||
|
for _, re := range h.redactionKeys {
|
||||||
|
msg = re.ReplaceAllString(msg, "$1[REDACTED]$2")
|
||||||
|
}
|
||||||
|
|
||||||
|
return msg, nil
|
||||||
|
}
|
||||||
|
|
|
@ -50,6 +50,17 @@ type levelThresholdTest struct {
|
||||||
description string
|
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) {
|
func TestLevelThreshold(t *testing.T) {
|
||||||
tests := []levelThresholdTest{
|
tests := []levelThresholdTest{
|
||||||
{
|
{
|
||||||
|
@ -68,7 +79,7 @@ func TestLevelThreshold(t *testing.T) {
|
||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
fn := func(t *testing.T) {
|
fn := func(t *testing.T) {
|
||||||
levels := LevelThreshold(test.level)
|
levels := levelThreshold(test.level)
|
||||||
assert.Equal(t, test.expected, levels, test.description)
|
assert.Equal(t, test.expected, levels, test.description)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue