Fix trace log to show value instead of pointers (#18926)
- Fixes a issue with a trace of repo.Units whereby it would show the pointers. Before: ![image](https://user-images.githubusercontent.com/25481501/155876811-036bf40e-db89-4e09-ac00-0c78ce3f5bef.png) After: ![image](https://user-images.githubusercontent.com/25481501/155885102-16c9cf29-314b-4f32-bcee-80e332f63dec.png)
This commit is contained in:
parent
c9da11c6b2
commit
f56bba1a78
|
@ -290,7 +290,14 @@ func (repo *Repository) LoadUnits(ctx context.Context) (err error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
repo.Units, err = getUnitsByRepoID(db.GetEngine(ctx), repo.ID)
|
repo.Units, err = getUnitsByRepoID(db.GetEngine(ctx), repo.ID)
|
||||||
log.Trace("repo.Units: %-+v", repo.Units)
|
if log.IsTrace() {
|
||||||
|
unitTypeStrings := make([]string, len(repo.Units))
|
||||||
|
for i, unit := range repo.Units {
|
||||||
|
unitTypeStrings[i] = unit.Type.String()
|
||||||
|
}
|
||||||
|
log.Trace("repo.Units, ID=%d, Types: [%s]", repo.ID, strings.Join(unitTypeStrings, ", "))
|
||||||
|
}
|
||||||
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user