Tagged Questions
Logs an error message to the Apple System Log facility.
93
votes
9answers
35k views
NSLog tips and tricks [closed]
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 NSLog which you guys have ...
56
votes
7answers
8k 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, and that Xcode/gcc ...
37
votes
7answers
32k views
How do I debug with NSLog(@“Inside of the iPhone Simulator”)?
I'm used to programming and having log messages be viewable. I know you used to be able to use NSLog() to trace out messages when debugging Cocoa applications. What is the best way to "trace" messages ...
36
votes
9answers
24k views
Warning: “format not a string literal and no format arguments”
Since upgrading to the latest Xcode 3.2.1 and Snow Leopard, I've been getting the warning
"format not a string literal and no format arguments"
from the following code:
NSError *error = nil;
...
26
votes
3answers
10k 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 object? I guess I'm ...
16
votes
5answers
6k 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 value into my ...
12
votes
5answers
4k views
Do I need to disable NSLog before release Application?
When releasing an app for iPhone, if I disable (comment NSLog();) will it perform better?
11
votes
5answers
17k 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 seen several ...
9
votes
3answers
1k 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 it.
On occasion, ...
6
votes
3answers
548 views
what happens to NSLog info when running on a device?
what happens to NSLog info when running on a device? Where does the text go? Does it get saved? Is it therefore a big overhead when running on a device, or does it effectively get sent to null?
6
votes
4answers
2k 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 well as any NSLog() ...
5
votes
2answers
138 views
NSLog - Strange behavior
I found that last word showed with double quotes. But why?
NSDictionary *guide2 = [NSDictionary dictionaryWithObjectsAndKeys:kArr, @"Kate", aArr, @"Ana-Lucia", kArr, @"John", nil];
NSArray *array = ...
5
votes
4answers
530 views
Where is my NSLog output?
I've just started out learning iOS development. I'm using some NSLog statements in my code but they don't appear to be output anywhere. My application is using the debug configuration and I'm running ...
5
votes
1answer
2k views
How to use printf with NSString
I need to use something like NSLog but without the timestamp and newline character, so I'm using printf. How can I use this with NSString?
5
votes
2answers
520 views
Objective C override %@ for custom objects
I'd like to override the default print function in NSLog for custom objects;
For example:
MyObject *myObject = [[MyObject alloc] init];
NSLog(@"This is my object: %@", myObjcet);
Will print out:
...
5
votes
4answers
3k 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 example, can I redirect ...
4
votes
2answers
380 views
Enable and Disable NSLog in DEBUG mode
I want to enable NSLog when I am in debug and disable it otherwise. A very simple thing is:
#ifdef DEBUG
NSLog(@"My log");
#endif
But all this #ifdef and #endif is borring... :( So I try other ...
4
votes
3answers
449 views
How to print a double with full precision on iOS?
Test case:
NSLog(@"%f", M_PI);
NSLog(@"%@", [NSString stringWithFormat:@"%f", M_PI]);
NSLog(@"%@", [NSNumber numberWithDouble:M_PI]);
Results:
3.141593
3.141593
3.141592653589793
...
4
votes
2answers
439 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 exactly does it mean? ...
3
votes
4answers
65 views
Should I remove NSLogs when releasing my App
Is it advisable to do any NSLogging in a shipping app? I know that I should not in heavily used loops. Or not log too verbosely. But I am not sure if it is a good practice to do so.
Removing all the ...
3
votes
2answers
72 views
Immediately flushing log statements using the Cocoa Lumberjack logging framework, the way NSLog flushes to console
Many iOS developers have found the Cocoa Lumberjack Logging framework to fill a need that simple NSLog statements don't. It's reminiscent of Log4J in the Java world.
In any event, I have written my ...
3
votes
1answer
181 views
NSLog not printing to console
I have an Xcode project I've been working on for months. I've never had a problem with NSLog, but after upgrading to Xcode 4.2 nothing will log to the console. I even tried throwing this in ...
3
votes
1answer
61 views
XCode / Objective C conditional breakpoint based on caller
Ok, i have a requirement to set a breakpoint that only gets "hit" when a method is (or is not) called by a specific object and/or selector
the easiest way i can think of doing that is if there were ...
3
votes
1answer
198 views
NSLog an object's memory address in overridden description method
I am overriding an object's description method. I need to know how to print the object's memory address to replace {???} in the code below:
-(NSString *) description {
return [NSString ...
3
votes
2answers
178 views
How to show log in debug mode only for iPhone application?
I am debugging the application in iPhone Simulator.I want to show log only when the application is running in debug mode in iPhone Simulator.I am using the NSLog. How can I put the condition for NSLog ...
3
votes
2answers
112 views
NSLog() not outputting after callback
I've got an NSLog invocation in a method that I know is getting called (I've set a breakpoint). But there's not output in that method, or at all after that method. When the app starts up, my NSLog ...
3
votes
5answers
217 views
NSLog on the device, is that a problem or must i remove that?
I have read this post: what happens to NSLog info when running on a device?
...but wondering if NSLog is a problem when distributing the app such as filling up the memory or something? I am only ...
3
votes
1answer
2k views
NSLog specifier for NSInteger?
A NSInteger is 32 bits on 32-bit platforms, and 64 bits on 64-bit platforms. Is there a NSLog specifier that always matches the size of NSInteger?
Setup
Xcode 3.2.5
llvm 1.6 compiler (this is ...
3
votes
1answer
282 views
TRACE logging on iPhone
I am new to iPhone and trying to learn the sequence of methods invoked during application loading time.
After some googling, I found this that seems to be adequate:
NSLog(@"Begin %@ ...
3
votes
2answers
433 views
Is there a cost to using NSLog liberally?
As a newer programmer, I've discovered the magic of NSlog, and use it all through my code. It's been extremely helpful (along with NSZombieEnabled) in debugging.
I can see a definite performance hit ...
3
votes
1answer
558 views
NSLog in submitted app
I had the misfortune of submitting an app with an NSLog still active. It very rarely fires, but I would like to know what are the chances of my app being rejected because of that?
I am NOT asking how ...
3
votes
2answers
96 views
iphone nsarray problem?
Okay maybe i just need another set of eyes on this, but I have the following lines of code in one of my view controllers. It takes some data from a file, and populates it into an array using "\n" as a ...
3
votes
1answer
163 views
NSLog crashing app using 3.1.3 software
the other day I had a bug submitted for my app from a user on an ipod touch with 3.1.3 software. It was a strange bug as no-one else has submitted it yet.
Long story short, it appears that anywhere ...
3
votes
7answers
2k views
Is it ok to submit the iPhone app binary with NSLog statements?
I am just about to submit my first iPhone app.
I have put lots of NSLog statements to test and debug the application .
So my question is " Is it ok to keep the NSLog statements in the source code ...
3
votes
2answers
1k views
iPhone: Once I have redirected NSLog to a file, how do I revert it to the console?
I'm using:
#if TARGET_IPHONE_SIMULATOR == 0
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths ...
3
votes
4answers
454 views
How to get rid of the date and time that appears before every NSLog statement in the console
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 another logging function?
...
2
votes
2answers
60 views
How do I get a property of an object in an array of those objects in Objective C?
I have an array of custom objects, but I can't NSLog the property of an individual object in that array because you can store any objects in an array. How would I go about doing this?
2
votes
4answers
277 views
NSMutableArray's count method causes a bad access error?
I see a few similar questions, but no simple answers. I'm just playing around with NSMutableArray's to get a feel for them before I actually use them in my real project. For some reason, it's giving ...
2
votes
3answers
590 views
nslog stopped working in xcode
I have a strange issue and possibly a bug. My NSLog statements have stopped working completely, they do not print even in view did load, application didfinishlaunching etc. The have all turned a brown ...
2
votes
2answers
238 views
NSLog invalid in Xcode
I am confused for a long time. In my Project, the nslog is invalid,like:
NSArray *arr = [NSArray arrayWithObjects:@"a",@"b",nil];
NSLog(@"%@",arr);
In the console there is no result. In the ...
2
votes
1answer
895 views
How to display system log on iPad/iPhone iOS device?
I want to be able to view all of the NSLog() messages from my App in the App itself. How do I access the system log of the device?
2
votes
1answer
174 views
NSlog() to NSString
I want to take an NSLog() message and save it as a NSString.
For example, the following prints something like "Player coordinates (0,0)"
NSLog(@"Player cordinates(%i, %i)", xcord, ycord);
I want ...
2
votes
1answer
82 views
Duplicate NSLog entries
I don't know if it's possible for me to include code here that's relevant as my project is so large but are there any typical reasons why NSLog would repeat some warnings and calls to it at occasions ...
2
votes
3answers
306 views
#define NSLog (…) still print output to the console
I tried to disable NSLog in release build.
I put the following code in .pch file
#ifndef __OPTIMIZE__
# define NSLog(...) NSLog(__VA_ARGS__)
#else
# define NSLog(...) {}
#endif
...
2
votes
1answer
174 views
Accessing Objective-C hidden _cmd argument from Python
I've poked around at the PyObjC innards quite a bit trying to figure this out. Is it possible to access Objective-C's hidden SEL _cmd method argument when writing a Python method? It's got to be ...
2
votes
4answers
553 views
format not a string literal and no format arguments (not involving NSLog)
(I am new to objective c so apologies if this seems to be a simple question)
I researched the following message here
format not a string literal and no format arguments
and most of the responses ...
2
votes
2answers
330 views
How to disable console logging on certain PDF generated by CGContextDrawPDFPage
I have a problem with certain PDF's logging to console some Node numbers and Font family and it is making my application slow. Anybody know how to disable the logging?
I used:
...
2
votes
4answers
748 views
Strange behaviour with NSLog
I'm using NSLog to inspect a UITextView. I have the following logging statements in my code:
NSLog(@"textView: %@",textView);
NSLog(@"textView.frame: %@",textView.frame);
...
2
votes
3answers
384 views
Code only works if I NSLog some values - but why?
I'm writing a simple QR code generator (just for fun and to learn some Obj-C), and I'm working on tracing the outline of connected "modules" (i.e. the black squares that make up a QR code). This is in ...
2
votes
1answer
136 views
How do you get the variables passed into function using macros (objective c)
Does anyone know how to dynamically get all the variables values passed into a function for the sake of logging ?
I'm looking for a simple way (like using a compiler macro) to be able to log the ...