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 brond...@gmail.com on 30 Dec 2009 at 8:16
Original issue reported on code.google.com by
brond...@gmail.com
on 30 Dec 2009 at 8:16