Skip to content

Commit

Permalink
don't redefine DebugLog
Browse files Browse the repository at this point in the history
  • Loading branch information
neilrahilly committed Oct 11, 2012
1 parent daf5d8b commit eec5788
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Mixpanel/Mixpanel.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,20 @@
#endif

#ifdef DEBUG
#ifndef DebugLog
#define DebugLog(...) NSLog(__VA_ARGS__)
#else
#define DebugLog(...)
#endif
#endif

#ifdef MIXPANEL_DEV
#ifndef DevLog
#define DevLog(...) NSLog(__VA_ARGS__)
#else
#define DevLog(...)
#endif
#endif

@interface Mixpanel ()

Expand Down

0 comments on commit eec5788

Please sign in to comment.