Stop using print(...) this practice is not correct.
You should replace all the print(...) with debugPrint(...)
YOu can research but basically, print is visible in ALL logs, so if you go to the store and someone connects their device to Xcode the logs are visible. This also uses a resource that is not required in production. debugPrint is only printed during development.
Stop using
print(...)
this practice is not correct.You should replace all the
print(...)
withdebugPrint(...)
YOu can research but basically,
print
is visible in ALL logs, so if you go to the store and someone connects their device to Xcode the logs are visible. This also uses a resource that is not required in production.debugPrint
is only printed during development.