~sircmpwn/chartsrv

33d0c129be02dd6f8f126ca20491d55fa2a84354 — Drew DeVault 2 years ago 93505c9 1.0.1
Fix Printf without formatting directives
1 files changed, 1 insertions(+), 1 deletions(-)

M main.go
M main.go => main.go +1 -1
@@ 144,7 144,7 @@ func handleLabel(p *plot.Plot, l *plotter.Line, label string, metric string) {
	}
	tmpl, err := template.New("label").Parse(label)
	if err != nil {
		log.Printf("Failed to parse label template: ", err)
		log.Printf("Failed to parse label template: %v", err)
	} else {
		var label_out bytes.Buffer
		tmpl.Execute(&label_out, tags)