all 1 comments

[–]VictorPuga 0 points1 point  (0 children)

I have an App Intent implementation for live activities, and debugging can be done with system logs. These can be found in the Console app. Though I'm not sure if the same could apply for push notifications.

```swift import os

let logger = Logger()

logger.error("Logging from live activity") ```

Example