PPPC-Utility
PPPC-Utility copied to clipboard
Should use os_log instead of print function
All calls to print should be converted to call os_log instead so that messages from the app will be visible in the system log (and visible in Console.app) from the compiled app instead of only being visible in the Xcode debugger when building from source.
Currently there are 31 uses of the print function in the code.
Working on this. Because PPPC Utility does not support iOS it looks like using the newer OSLog class adds more capabilities than os_log: https://developer.apple.com/documentation/os/oslog
This is done now.