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
|
@ -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 {
|
||||
if ctx == nil {
|
||||
ctx = context.Background()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue