Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I see the full error or warning in Xcode?

Tags:

No matter how large I make the window, this is all I can see of warnings:

How can I see the full text of the warning at the place it appears?

I could hover the mouse over the warning as it appears in the left pane and, after waiting long enough, a tooltip appears with the full text, but I find this very awkward... Is this the only way?

like image 842
rid Avatar asked Aug 30 '12 18:08

rid


3 Answers

#### Here's a very handy trick: ####

1) Look in the issue navigator

enter image description here

2) Go to: xCode preferences > General > "Issue Navigator Detail" > now boost the dropdown to 10 lines.

Now you can see the whole message in the issue navigator!

enter image description here

like image 178
smileBot Avatar answered Sep 20 '22 21:09

smileBot


The Issue Navigator is a compact representation. If you really want all the details, you can view the build transcript:

  • cmd+7
  • click on the top-most "Build $APP" section.
  • locate the warning or error
  • click the buttons on the right to see the full details of the step you are interested in

Double clicking on a message will then reveal the source location in the editor.

like image 37
justin Avatar answered Sep 23 '22 21:09

justin


The easiest way to do it is right clicking the message in the "Issue Navigator" and choosing "Reveal in Log".

like image 8
digitalvision Avatar answered Sep 21 '22 21:09

digitalvision