HOLog
HOLog copied to clipboard
Very simple logging for methods and their arguments on iOS
Deprecated, this code should not be used any more!
HOLog
Currently this helper will just work in limited circumstances i.e. only in the iOS Simulator and outside of blocks!!!
This NSLog helper can be put into an ObjC method and than dumps the full method name including the values passed to that method.
Example
Example of using the 'HOLogPing' NSLog extension:
#import "HOLog.h"
@implementation HOLogDemoViewController
- (void)exampleMethod:(id)obj
a1:(int)a1
a2:(CGPoint)a2
a3:(double)a3
a4:(BOOL)a4
{
// In the following line happens the magic!!!
HOLogPing
// ...
}
- (void)viewDidLoad {
// ...
// Test call
[self exampleMethod:@"a string"
a1:42
a2:CGPointMake(12, 21)
a3:1.23
a4:YES
];
}
@end
Examples output:
2010-10-30 13:35:56.112 HOLogDemo[35880:207]
-[HOLogDemoViewController exampleMethod:@a string a1:(int)42 a2:(CGPoint){12, 21} a3:(double)1.230000 a4:(char)1]
Known Bugs
- Just works on iOS Simulator, not on actual devices. Help is very appreciated!
Useful Links and Credits
- DDFoundation: http://www.dribin.org/dave/software/#ddfoundation
- Macro Magic: http://vgable.com/blog/2010/08/19/the-most-useful-objective-c-code-ive-ever-written/
- Introspection: http://stackoverflow.com/questions/1797964/how-to-pass-all-arguments-of-a-method-into-nslog/1799472#1799472
- CocoaLumberjack Integration: http://petersteinberger.com/2010/10/logging-again/
License
Apache License 2.0 http://www.apache.org/licenses/LICENSE-2.0