mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
chore: use log.Printf(...) instead of log.Println(fmt.Sprintf(...)) (#70658)
This commit is contained in:
parent
5e2ee56597
commit
80226291a1
@ -252,7 +252,7 @@ func (p *publisher) postRequest(url string, obj interface{}, desc string) error
|
||||
}
|
||||
|
||||
if p.dryRun {
|
||||
log.Println(fmt.Sprintf("POST to %s:", p.apiURL(url)))
|
||||
log.Printf("POST to %s:\n", p.apiURL(url))
|
||||
log.Println(string(jsonBytes))
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user