Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi i have enormous calculation going on in my application as i have NSLog statement called at-lest 2000 times its a Big application of 11 MB. I am thinking to Remove this From my application so as to improve the performance. M i thinking in a right way ??

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, while the debugger is running and issuing NSLog calls, performance can be severely affected. Also, check out this question.

share|improve this answer
1  
does nslog creates a child thread? – sanjit shaw Feb 1 at 13:58
Seems like it doesn't matter as it is serialized: "Output from NSLogv is serialized, in that only one thread in a process can be doing the writing/logging described above at a time. All attempts at writing/logging a message complete before the next thread can begin its attempts." – Stavash Feb 1 at 14:19
well its good for development purpose but there is no use in the running application on Device , so its better i commnet out Major NSLog . – Vinay Chopra Feb 1 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.