I use a macro to do logging:
#define LOG(fmt, ...) NSLog((fmt), ##VA_ARGS);
which means I can write code like:
LOG(@"radius=%.1f", fRadius)
Up until Xcode 15 the %.1f would be respected and display fRadius to one decimal place. But since Xcode 15 it seems to ignore that and just display all decimal places regardless.
Anyone know why, and how to fix that?