Is Self._printChanges() allowed in apps in the AppStore?

I have used Self._printChanges() in my SwiftUI views, I find it a handy way to see more of what is going on during testing. I wrapped the calls in a #if !DEBUG .... #endif so it won't compile into a production build for the AppStore. Does Apple care about this? Will Apple reject an app submission to the AppStore because of the use of _pringChanges(). I realize it is technically an "undocumented" feature, but I have it not compiling into the production build. Is that good enough for the AppStore, or would that get rejected? If that will get rejected, does anyone know where in the AppStore guidelines it says not to use undocumented API calls, I could not find it.

Thanks in advance for any and all ideas and thoughts.

If it's not compiled in, it means there is no reference to it in the binary at all. So it can't be an issue.

Is Self._printChanges() allowed in apps in the AppStore?
 
 
Q