Merge "Change format string %s -> %#v" am: 0bda815c2e

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1949440

Change-Id: Iee8c33e8ccbfa95d24c454579f0b60c801a8f2dd
This commit is contained in:
Liz Kammer
2022-01-14 14:32:54 +00:00
committed by Automerger Merge Worker

View File

@@ -492,7 +492,7 @@ func (ba *BoolAttribute) Collapse() error {
// Verify post-condition; this should never fail, provided no additional
// axes are introduced.
if len(ba.ConfigurableValues) > 1 {
panic(fmt.Errorf("error in collapsing attribute: %s", ba))
panic(fmt.Errorf("error in collapsing attribute: %#v", ba))
}
}
return nil