Page 1 of 1

Can you silence memory read errors?

Posted: Tue Dec 06, 2011 8:56 am
by MiesterMan
Ok, so doing so much testing I've come to realize just how much of a nusance they are. Is there an option or flag or something I can set to disable them? It's very hard to collect data when it's seperated by 100 lines of "WARNING: Failure reading..."

Re: Can you silence memory read errors?

Posted: Tue Dec 06, 2011 9:37 am
by Administrator
You can temporarily suppress warnings, yes.

Code: Select all

showWarnings(false);
You should probably re-enable it (use true instead of false) after completing risky memory operations, but do not need to.