You don't need external logging frameworks for #iOS and #mac
apps.
The built-in OSLog system is super easy to use and provides exceptional performance.
Apple provides extensive documentation: https://developer.apple.com/documentation/os/logging/generating_log_messages_from_your_code

There is also a #WWDC2020 video: https://developer.apple.com/videos/play/wwdc2020/10168/

And when I talked about this at Cocoaheads Berlin, I created a sample project that also shows how to export logs from user devices:
https://github.com/greimers/Landmarks-with-Logging

#swift #development

Generating Log Messages from Your Code | Apple Developer Documentation

Record useful debugging and analysis information, and include dynamic content in your messages.

Apple Developer Documentation
@gabriel_r I’d love to take a look at that project, but it is currently 404ing. Is the repo public?
@mattiem 🤦‍♂️ Yes, it was private, sorry. I've changed it. Please try again.
@gabriel_r the only thing I don't like about it is that it dumps into the system log, so the user is able to see information that not always the dev wants the user to know about.