I'm working on my first cocos2d game and it's really great. But it's constantly outputing tons of stuff to the debug console, so much so that I can't really see my own debug messages because they're buried in hundreds upon hundred of lines that looks like this:
2009-09-24 01:37:18.766 tehinternets[1355:20b] deallocing <MoveTo = 06375DA0 | Tag = -1>
2009-09-24 01:37:18.767 tehinternets[1355:20b] deallocing <MoveTo = 00E5FF20 | Tag = -1>
2009-09-24 01:37:18.767 tehinternets[1355:20b] deallocing <MoveTo = 00ED1D50 | Tag = -1>
2009-09-24 01:37:18.768 tehinternets[1355:20b] deallocing <RotateTo = 00E90350 | Tag = -1>
2009-09-24 01:37:18.768 tehinternets[1355:20b] deallocing <MoveTo = 00ED2480 | Tag = -1>
2009-09-24 01:37:18.768 tehinternets[1355:20b] deallocing <MoveTo = 00E151D0 | Tag = -1>
2009-09-24 01:37:18.796 tehinternets[1355:20b] deallocing <RotateTo = 00EC0E30 | Tag = -1>
2009-09-24 01:37:18.821 tehinternets[1355:20b] deallocing <RotateTo = 0634F570 | Tag = -1>
2009-09-24 01:37:18.849 tehinternets[1355:20b] deallocing <RotateTo = 00E609D0 | Tag = -1>
2009-09-24 01:37:18.876 tehinternets[1355:20b] deallocing <RotateTo = 06318920 | Tag = -1>
2009-09-24 01:37:18.904 tehinternets[1355:20b] deallocing <RotateTo = 063A89F0 | Tag = -1>
2009-09-24 01:37:18.929 tehinternets[1355:20b] deallocing <RotateTo = 063A84F0 | Tag = -1>
2009-09-24 01:37:18.954 tehinternets[1355:20b] deallocing <RotateTo = 063E2530 | Tag = -1>
2009-09-24 01:37:18.981 tehinternets[1355:20b] deallocing <RotateTo = 063D5BD0 | Tag = -1>
2009-09-24 01:37:19.009 tehinternets[1355:20b] deallocing <RotateTo = 00EBC000 | Tag = -1>
2009-09-24 01:37:19.035 tehinternets[1355:20b] deallocing <RotateTo = 00EC0E30 | Tag = -1>
2009-09-24 01:37:19.061 tehinternets[1355:20b] deallocing <RotateTo = 0634F570 | Tag = -1>
2009-09-24 01:37:19.086 tehinternets[1355:20b] deallocing <RotateTo = 00E609D0 | Tag = -1>
2009-09-24 01:37:19.110 tehinternets[1355:20b] deallocing <RotateTo = 06318920 | Tag = -1>
2009-09-24 01:37:19.138 tehinternets[1355:20b] deallocing <RotateTo = 063A89F0 | Tag = -1>
2009-09-24 01:37:19.163 tehinternets[1355:20b] deallocing <AtlasSpriteFrame = 00EBB840 | Rect = (0.00,72.00,30.00,36.00)>
2009-09-24 01:37:19.164 tehinternets[1355:20b] deallocing <AtlasSpriteFrame = 00EC0CA0 | Rect = (0.00,72.00,30.00,36.00)>
2009-09-24 01:37:19.165 tehinternets[1355:20b] deallocing <AtlasSpriteFrame = 063AB5E0 | Rect = (0.00,72.00,30.00,36.00)>
2009-09-24 01:37:19.165 tehinternets[1355:20b] deallocing <AtlasSpriteFrame = 063C42D0 | Rect = (0.00,72.00,30.00,36.00)>
2009-09-24 01:37:19.166 tehinternets[1355:20b] deallocing <AtlasSpriteFrame = 063D67C0 | Rect = (0.00,72.00,30.00,36.00)>
2009-09-24 01:37:19.166 tehinternets[1355:20b] deallocing <AtlasSpriteFrame = 06302550 | Rect = (0.00,72.00,30.00,36.00)>
2009-09-24 01:37:19.168 tehinternets[1355:20b] deallocing <RotateTo = 063A84F0 | Tag = -1>
2009-09-24 01:37:19.193 tehinternets[1355:20b] deallocing <RotateTo = 063E2530 | Tag = -1>
I've searched for it in a bunch of places but can't even find anyone else who seems to have this problem. Thanks!