Skip to content

Instantly share code, notes, and snippets.

@Lmd64-zz
Created October 1, 2013 10:56
Show Gist options
  • Save Lmd64-zz/6776820 to your computer and use it in GitHub Desktop.
Save Lmd64-zz/6776820 to your computer and use it in GitHub Desktop.
AssertMacros: queueEntry temporary fix
#warning Temporary hack to remove the flood of assertmacro log messages.
typedef int (*PYStdWriter)(void *, const char *, int);
static PYStdWriter _oldStdWrite;
int __pyStderrWrite(void *inFD, const char *buffer, int size){
if ( strncmp(buffer, "AssertMacros:", 13) == 0 ) {
return 0;
}
return _oldStdWrite(inFD, buffer, size);
}
int main(int argc, char *argv[]){
_oldStdWrite = stderr->_write;
stderr->_write = __pyStderrWrite;
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment