You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. svn checkout of the source
2. copy all *.h and *.m into your personal project
_gLogging can't be found.
just managed the definition in EXFLogging.h
from:
#define Debug(FMT,...) if(!gLogging) ; else NSLog(@"DEBUG: " FMT,
##__VA_ARGS__)
to:
#define Debug(FMT,...) if(1 == 2) ; else NSLog(@"DEBUG: " FMT, ##__VA_ARGS__)
not so elegant as solution, but it works for tests.
Original issue reported on code.google.com by [email protected] on 30 Dec 2009 at 8:16
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 30 Dec 2009 at 8:16The text was updated successfully, but these errors were encountered: