Skip to content

Commit

Permalink
added DJLogC D2JLogC D3JLogC and D2JLOG D3JLOG as I use them on other…
Browse files Browse the repository at this point in the history
… projects.
  • Loading branch information
jollyjinx committed Dec 10, 2009
1 parent 389ac91 commit 753f945
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion JLog/Default.pch
Expand Up @@ -14,11 +14,17 @@
#define JLogC(firstarg, ...) NSLog(@"%@",JLineC(firstarg , ##__VA_ARGS__ ))

#define DJLog if(DEBUG)JLog
#define DJLogC if(DEBUG)JLogC

#define D2JLog if(DEBUG>1)JLog
#define D3JLOG if(DEBUG>2)JLog
#define D2JLogC if(DEBUG>1)JLogC

#define D3JLog if(DEBUG>2)JLog
#define D3JLogC if(DEBUG>2)JLogC

#define DJLOG if(DEBUG)DJLog(@"");
#define D2JLOG if(DEBUG>1)DJLog(@"");
#define D3JLOG if(DEBUG>1)DJLog(@"");
#endif


Expand Down

0 comments on commit 753f945

Please sign in to comment.