Browse Source

Log config pretty printer (#1097)

Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com>
for-closed-social
Jonas 7 years ago
committed by Lunny Xiao
parent
commit
f3bf409082
2 changed files with 10 additions and 1 deletions
  1. +9
    -0
      modules/templates/helper.go
  2. +1
    -1
      templates/admin/config.tmpl

+ 9
- 0
modules/templates/helper.go View File

@ -5,6 +5,7 @@
package templates
import (
"bytes"
"container/list"
"encoding/json"
"fmt"
@ -133,6 +134,14 @@ func NewFuncMap() []template.FuncMap {
}
return path
},
"JsonPrettyPrint": func(in string) string {
var out bytes.Buffer
err := json.Indent(&out, []byte(in), "", " ")
if err != nil {
return ""
}
return out.String()
},
}}
}

+ 1
- 1
templates/admin/config.tmpl View File

@ -270,7 +270,7 @@
<dt>{{$.i18n.Tr "admin.config.log_mode"}}</dt>
<dd>{{.Mode}}</dd>
<dt>{{$.i18n.Tr "admin.config.log_config"}}</dt>
<dd><code>{{.Config}}</code></dd>
<dd><pre>{{.Config | JsonPrettyPrint}}</pre></dd>
{{end}}
</dl>
</div>

Loading…
Cancel
Save