I have a big project and there are many NSLog()
calls. When something happens some NSLog()
works, and I don't know which NSLog
get called. How can I find a place where is NSLog()
get called in class file?
My NSLog
is like this: NSLog(@"%@", someArray);
and here's the log:
2013-04-23 20:43:38.257 myProj[2101:707] {
id = 1;
version = 1;
}
What does myProj[2101:707]
mean here? Does it give me any information about NSLog
function's location in class?