1
0
mirror of https://github.com/ClusterCockpit/cc-backend synced 2025-04-11 14:35:55 +02:00
This commit is contained in:
Jan Eitzinger 2022-09-13 15:40:32 +02:00
parent cab017ea63
commit 8845bba90d

@ -41,7 +41,7 @@ func Validate(k Kind, r io.Reader) (err error) {
var v interface{}
if err := json.NewDecoder(r).Decode(&v); err != nil {
log.Error("schema.Validate() - Failed to decode %v", err)
log.Errorf("schema.Validate() - Failed to decode %v", err)
return err
}