Normally, I can print all properties of an object with:
c.Infof("car: %+v", car)
But one struct has a String()
method. I think that this causes the line above to only print what the String()
method returns.
How can I override this and force print all properties of that struct?