Another Rookie Mistake.

Well I am working on a new feature and was using some NSLog statements to make sure things were working as they should.  They worked great in the sample app I wrote that just had part of the new feature.  However when I moved the code over to News Addict my NSLog statements weren’t showing.  After double checking everything several times, I finally noticed the problem.  I was compiling for Ad-Hoc distribution to my iPhone and not Debug.  So I switched it and sure enough NSLog are not written for Ad-Hoc builds which of course makes sense.  But you can waste a lot of time if you aren’t expecting that.  So remember when running test builds to make sure you have your build type right.