Print changes also for consistency errors

This commit is contained in:
Ciprian Hacman 2020-11-11 11:12:18 +02:00
parent 4579a1bcdc
commit c946f16c32
1 changed files with 1 additions and 0 deletions

View File

@ -222,6 +222,7 @@ func (t *DryRunTarget) PrintReport(taskMap map[string]Task, out io.Writer) error
fmt.Fprintf(b, " internal consistency error!\n") fmt.Fprintf(b, " internal consistency error!\n")
fmt.Fprintf(b, " actual: %+v\n", r.a) fmt.Fprintf(b, " actual: %+v\n", r.a)
fmt.Fprintf(b, " expect: %+v\n", r.e) fmt.Fprintf(b, " expect: %+v\n", r.e)
fmt.Fprintf(b, " change: %+v\n", r.changes)
continue continue
} }