the_prole
the_prole

Reputation: 8985

Where is application debug output saved to on iOS simulator file system

Where are the debug log of the application output saved in the iOS simulator file system?

Thanks.

Upvotes: 0

Views: 677

Answers (1)

matt
matt

Reputation: 535925

There is no "debug log" saved "in the iOS simulator file system". If you want to review the console log from an earlier run of your app in Xcode, look in the Report navigator in Xcode.

In this screen shot, every occurrence of the term "Debug" is an earlier run of my app in the Simulator, and the console output during that run is collected here.

enter image description here

Upvotes: 2

Related Questions