18
votes
8answers
2k views
Is it true that one should not use NSLog() on production code?
I was told this a few times in this very site, but I wanted to make sure this is really the case.
I was expecting to be able to sprinkle NSLog function calls throughout my code, a …
8
votes
5answers
977 views
NSLog tips and tricks
Hi,
I'm doing a presentation on debugging in Xcode and would like to get more information on using NSLog efficiently. I'd like to know if there are any tips and tricks to using NS …
4
votes
3answers
97 views
Is there any danger in leaving NSLog statements when building an app for distribution?
For some reason, during my development cycle I find myself deleting NSLog statements that I had inserted to aid in debugging. I don't really know why I have this habit, I just do i …
4
votes
5answers
3k views
Logging to a file on the iPhone
What would be the best way to write log statements to a file or database in an iPhone application?
Ideally, NSLog() output could be redirected to a file using freopen(), but I've …
2
votes
2answers
40 views
NSLog suppress date
I find NSLog() statements really hard to read because of the verbose date.
Is there a way to suppress the date on NSLog?
2
votes
3answers
134 views
NSLog with CGPoint data
I have a CGPoint called point that is being assigned a touch:
UITouch *touch = [touches anyObject];
CGPoint point = [touch locationInView:self];
I want to get the x coordinate …
2
votes
3answers
88 views
NSLog 10b meaning?
Whenever I use NSLog(), it always shows this mysterious "10b" next to the process ID. I know that this is tied somehow to the thread where the NSLog() call was made, but what exact …
2
votes
1answer
78 views
Printing Instance ID to NSLog?
In the dealloc method for a class how would I print out the ID (or some other unique identifier) for the instance being deallocated?
- (void)dealloc {
NSLog(@"_deallocing: ?? …
2
votes
3answers
511 views
Is there a way to capture the ouput of NSLog on an iPhone when not connected to a debugger?
I'm logging a bunch of data with NSLog(). Is there a way to capture the log data when my iPhone is not connected to my development machine and running under a debugger?
For exa …
1
vote
1answer
70 views
question concerning NSLog output %i, %d
I have question concerning a function I created.
I would like to show the timeinterval in my console output.
-(void)MyTimeInterval:(id)sender
{
NSDate *then = [NSDate date]; …
1
vote
1answer
93 views
iphone nslog corrupted data
Hi
I am having a weird problem with variable values. This is the code (it is part of a class method):
MyAppDelegate *pDelegate = [[UIApplication sharedApplication] delegate];
S …
1
vote
4answers
137 views
Is there an overview of all codes that can be used inside NSLog()?
i.e. %@ for strings, %f for doubles... I don't know the word for these placeholders but it would be great to have list for how to print booleans and other values.
1
vote
3answers
412 views
What is the Objective-C equivalent for “toString()”, for use with NSLog?
Is there a method that I can override in my custom classes so that when
NSLog(@"%@", myObject)
is called, it will print the fields (or whatever I deem important) of my obj …
1
vote
2answers
196 views
OCUnit, NSLog, and XCode 3.1
I'd been using OCUnit (the default installation that comes with XCode) in XCode 3.0. I've been happy being able to run my tests and see the results in the Build Results window, as …
1
vote
5answers
244 views
How to get rid of the date and time that appears before every NSLog statement in the console
Hi,
I use NSLog in my application. And I'd like to get rid of the annoying beginning of each string: "2009-07-01 21:11:06.508 MyApp[1191:207]".
Is there a way to do so? Probably …
