'Xcode 9.3 there is no way to see live device logs
Solution 1:[1]
In Xcode 9.3 device logs are moved to new location.To get on the new screen you have to navigate through Xcode -> Windows -> Device & Simulators.On device and simulators screen there is a new button added saying open console.
Click on an open console button, then you will be navigated to a new screen.I believe here you will get device logs at runtime.
Solution 2:[2]
Simply,
1. Xcode -> Windows -> Device & Simulators
2. Click: Open Console
It will start showing logs.
Important:
For Swift project print(" ")/debugPrint(" ") logs won't show here.
Use NSLog("Something") to get in console application.
Solution 3:[3]
The other (incorrectly downvoted) answer is correct. When I click the Console button in the Devices window...
...I see the device's live console messages scrolling by in the Console app:
Solution 4:[4]
My logs will randomly disappear - usually when the app crashes. If I delete the app from the device, then the logs return on next build.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | |
| Solution 3 | matt |
| Solution 4 | zachary |





